Skip to content

Instantly share code, notes, and snippets.

@1010real
Created May 9, 2014 06:27
Show Gist options
  • Save 1010real/da4c45ea0e404b8aceeb to your computer and use it in GitHub Desktop.
Save 1010real/da4c45ea0e404b8aceeb to your computer and use it in GitHub Desktop.
requireJS note01 addon.js - before
// addon.js
// 鍵カッコを定義
constant.startSquare = '「';
constant.endSquare = '」';
// 鍵カッコをつけた文字列を返す
function addSquareBracket(str) {
return getConstant('startSquare') + str + getConstant('endSquare');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment