Skip to content

Instantly share code, notes, and snippets.

@mapiondev
Created June 11, 2010 02:38
Show Gist options
  • Save mapiondev/433966 to your computer and use it in GitHub Desktop.
Save mapiondev/433966 to your computer and use it in GitHub Desktop.
[JavaScript] 安全に配列型を取得
/**
* 配列ならそのまま、非配列なら要素1の配列として返す
*/
MAPION.lang.Snippets.asArray=function(o){
if(o===null||o===void 0)return [];
if(o instanceof Array)return o;
else return [o];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment