Skip to content

Instantly share code, notes, and snippets.

@floatdrop
Created June 17, 2015 06:17
Show Gist options
  • Save floatdrop/9966f84c4bef5e1e9b01 to your computer and use it in GitHub Desktop.
Save floatdrop/9966f84c4bef5e1e9b01 to your computer and use it in GitHub Desktop.
Compare split performance
// npm i matcha -g
// matcha bench.js
bench('a', function() {
'a'.split('.');
});
bench('a.b', function() {
'a.b'.split('.');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment