// // Utilities // // æ¬é¡ã§ã¯ãªãã®ã§èªã¿é£ã°ãã¦OKã§ã. // /** * å¼æ°ã«æ¸¡ããå¤ãæååã«ãã¦è¿ãã¾ã. */ function tostring(obj) { if (typeof obj == 'undefined') { return '<undefined>'; } else if (typeof obj == 'null') { return '<null>'; } else if (typeof obj == 'object') { var text = ""; for (var name in obj) { if (text != "") { text += ", "; } else { text += "{"; } text += name + ":" + tostring(obj[name]); } text = text + "}";
{{#tags}}- {{label}}
{{/tags}}