タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

benchmarkとjsに関するsyanbiのブックマーク (1)

  • Benchmark.js

    Benchmark.js v2.1.2 A benchmarking library that supports high-resolution timers & returns statistically significant results. var suite = new Benchmark.Suite; // add tests 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/); }) // add listeners .on('c

    syanbi
    syanbi 2011/09/04
    jsのベンチマーク用ライブラリ。
  • 1