Skip to content

Instantly share code, notes, and snippets.

@naosim
Created January 8, 2015 07:29
Show Gist options
  • Save naosim/62ded0459e658dbf69cd to your computer and use it in GitHub Desktop.
Save naosim/62ded0459e658dbf69cd to your computer and use it in GitHub Desktop.
恵方巻きの方角を取得する
var getRolledThicklyDirection = function(year) {
var directions = [
"西南西微西",
"南南東微南",
"北北西微北",
"南南東微南",
"東北東微東"
];
return directions[year % 5];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment