Last active
August 12, 2016 12:25
-
-
Save indus/40c684c4f53d8e05d125f3d74bd1ffdc to your computer and use it in GitHub Desktop.
bjs\ntest
This file contains 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
suite.add('RegExp#test', function() { | |
/o/.test('Hello World!'); | |
}) | |
.add('String#indexOf', function() { | |
'Hello World!'.indexOf('o') > -1; | |
}) | |
.add('String#match', function() { | |
!!'Hello World!'.match(/o/); | |
}) |
This file contains 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
suite.add('RegExp#test', function() { | |
/o/.test('Hello World!'); | |
}) | |
.add('String#indexOf', function() { | |
'Hello World!'.indexOf('o') > -1; | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment