Created
October 10, 2020 07:52
-
-
Save ambroseus/9396ed93bd2af65866de5eabbc9f1e97 to your computer and use it in GitHub Desktop.
variants benchmark
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
const imVariants = require('./variants-im') | |
const fnVariants = require('./variants-fn') | |
const str = '012345678901234' | |
count = 100 | |
console.time('imperative variants'); | |
for (let i = 0; i < count; i++) { | |
imVariants(str) | |
} | |
console.timeEnd('imperative variants'); | |
console.time('functional variants'); | |
for (let i = 0; i < count; i++) { | |
fnVariants(str) | |
} | |
console.timeEnd('functional variants') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment