HTML 4.01 は下記リンクでid属性/class属性を定義しています。
id属性値は文法上、NAMEトークンであり、class属性値はCDATAのリストで表されるようです。
/** | |
* eval-calculation.js | |
* evaluate calculation formula. | |
* | |
* @version 1.0.0 | |
* @author think49 | |
* @url https://gist.github.com/think49/54b074cab2145efddb48765652c74710 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
*/ |
HTML 4.01 は下記リンクでid属性/class属性を定義しています。
id属性値は文法上、NAMEトークンであり、class属性値はCDATAのリストで表されるようです。
/** | |
* calculator.css | |
*/ | |
.calc-form { | |
border-collapse: separate; | |
border-spacing: 0.2em; | |
font-style: monospace; | |
} |
ver 1.0.3 (2016/05/11)
CSV.parse()
の内部実装を String.prototype.replace
から RegExp.prototype.exec
に変更したver 1.0.2 (2016/05/11)
CSV.parse()
で第三引数 reviver
が指定された場合、配列化する前にセル値を引数にとるコールバック関数 reviver
を呼び出すようにしたCSV.stringify()
で第三引数 replacer
が指定された場合、CSV文字列に変換する前に要素値を引数にとるコールバック関数 replacer
を呼び出すようにしたver 1.0.1 (2016/05/10)
/** | |
* es6-string-prototype-startswith.js | |
* String.prototype.startsWith (ECMA-262 6th Edition / ECMAScript 2015) | |
* | |
* | |
* @version 1.0.0 | |
* @author think49 | |
* @url https://gist.github.com/think49/908b8d5f08c9945beea7 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
* @see <a href="http://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype.startswith">21.1.3.18 String.prototype.startsWith – ECMA-262 6th Edition</a> |
/** | |
* jquery.get-classlist.js | |
* get a classList of first index's jQuery object. | |
* | |
* @version 1.0 | |
* @author think49 | |
* @url https://gist.github.com/think49/c382098fedd9ae7c6661 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
*/ |
/** | |
* es6-weakmap.js | |
* WeakMap (ECMA-262 6th Edition / ECMAScript 2015) | |
* | |
* | |
* @version 0.9.2 | |
* @author think49 | |
* @url https://gist.github.com/think49/283b7374e352e09fc131 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
* @see <a href="http://www.ecma-international.org/ecma-262/6.0/#sec-weakmap-constructor">23.3.1 The WeakMap Constructor – ECMA-262 6th Edition</a> |
/** | |
* debug-code.js | |
* | |
* @version 1.0.3 | |
* @author think49 | |
* @url https://gist.github.com/think49/bfca562039aa29fa5766 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
*/ | |
'use strict'; | |
var DebugCode = (function (Object, keys, defineProperty, String) { |