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
/** | |
* Description: Count a string (mixing English and Chinese characters) length. | |
* A basic and rough function. | |
* | |
* Performance: | |
* Multiple methods performance test on http://jsperf.com/count-string-length. | |
* You can see that using regexp to check range is very slow from the above test page. | |
*/ | |
function strLen(str) { | |
if (typeof str !== 'string') { |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
<?php | |
/** | |
* An helper file for Laravel 4, to provide autocomplete information to your IDE | |
* Generated with https://github.com/barryvdh/laravel-ide-helper | |
* Updated for Laravel 4.2.1 (2014-06-01) | |
* | |
* @author Barry vd. Heuvel <barryvdh@gmail.com> | |
*/ | |
namespace { |