This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* get-type.js | |
* | |
* @version 1.0.2 | |
* @author think49 | |
* @url https://gist.github.com/862085 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
*/ | |
function getType (value) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* get-class.js | |
* | |
* @version 1.0.4 | |
* @author think49 | |
* @url https://gist.github.com/862098 | |
*/ | |
function getClass (arg) { | |
var _class; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* compatible-event.js | |
* | |
* @version 0.9.4b | |
* @author think49 | |
* @url https://gist.github.com/882821 | |
*/ | |
'use strict'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* textareaSelectEndPoint.js | |
* | |
* @version 1.0.4 | |
* @author think49 | |
* @url https://gist.github.com/885009 | |
*/ | |
(function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* is-object.js | |
* | |
* @version 1.0.3 | |
* @author think49 | |
* @url https://gist.github.com/887049 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
*/ | |
'use strict'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* natural-language.js | |
* Array is sorted by natural language algorithm. | |
* | |
* @version 0.9 | |
* @author think49 | |
* @url https://github.com/think49 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
* @see <a href="http://sourcefrog.net/projects/natsort/">Natural Order String Comparison</a> | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* to-zero-padding.js | |
* The Number value is changed to the numerical string value of zero padding. | |
* | |
* @version 1.1.1 | |
* @author think49 | |
* @url https://gist.github.com/891983 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* cssstyledeclaration-removeproperty.js | |
* define CSSStyleDeclaration.prototype.removeProperty for IE. | |
* | |
* @version 1.0.4 | |
* @author think49 | |
* @url https://gist.github.com/953107 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
* @see <a href="http://dev.w3.org/csswg/cssom/#the-cssstyledeclaration-interface">5.5.1. The CSSStyleDeclaration Interface - CSSOM</a> | |
* @see <a href="http://msdn.microsoft.com/en-us/library/dd347052%28v=vs.85%29.aspx">CSSStyleDeclaration Prototype (attribute) - MSDN</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* to-hankaku.js | |
* convert to ascii code strings. | |
* | |
* @version 1.0.1 | |
* @author think49 | |
* @url https://gist.github.com/964592 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* translate-by-array.js | |
* translate function of XPath. | |
* | |
* @version 1.0.2 | |
* @author think49 | |
* @url https://gist.github.com/966219 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
* @see <a href="http://www.w3.org/TR/xpath/#function-translate">translate() - XML Path Language (XPath)</a> | |
*/ |