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
| <!doctype html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <ul id='cycleResults'></ul> | |
| <div id="result"></div> | |
| <br> | |
| <button id="btn">Run Tests</button> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></script> |
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
| <!doctype html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <ul id='cycleResults'></ul> | |
| <div id="result"></div> | |
| <br> | |
| <button id="btn">Run Tests</button> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></script> |
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
| <!doctype html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <ul id='cycleResults'></ul> | |
| <div id="result"></div> | |
| <br> | |
| <button id="btn">Run Tests</button> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></script> |
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
| <!doctype html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <ul id='cycleResults'></ul> | |
| <div id="result"></div> | |
| <br> | |
| <button id="btn">Run Tests</button> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></script> |
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
| <!doctype html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <ul id='cycleResults'></ul> | |
| <div id="result"></div> | |
| <br> | |
| <button id="btn">Run Tests</button> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></script> |
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
| <!doctype html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <ul id='cycleResults'></ul> | |
| <div id="result"></div> | |
| <br> | |
| <button id="btn">Run Tests</button> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></script> |
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
| <!doctype html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <ul id='cycleResults'></ul> | |
| <div id="result"></div> | |
| <br> | |
| <button id="btn">Run Tests</button> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></script> |
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
| <!doctype html> | |
| <html> | |
| <head></head> | |
| <body> | |
| <ul id='cycleResults'></ul> | |
| <div id="result"></div> | |
| <br> | |
| <button id="btn">Run Tests</button> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></script> |
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
| var Benchmark = require('benchmark'); | |
| function control(_string) { | |
| const string = _string + ''; | |
| const length = string.length; | |
| let characters = ''; | |
| for (let i = 0; i < length; i++) { | |
| switch (string.charCodeAt(i)) { | |
| case 38: |
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
| var domvm = require('./domvm.full.min.js'); | |
| var el = domvm.defineElement, | |
| vw = domvm.defineView; | |
| function mkArr(count, fn, frag) { | |
| let i = 0, arr = []; | |
| while (i < count) | |
| frag ? arr.push.apply(arr, fn(i++)) : arr.push(fn(i++)); |