diff options
author | Rich Trott <rtrott@gmail.com> | 2016-02-19 17:03:16 -0800 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2016-02-22 11:09:26 -0800 |
commit | 4bb529d972afaa02d57a2ca29db33ac92f69b81d (patch) | |
tree | 362545fa9b9565b72d128b5ed0c9fd86c326633e /benchmark/path/basename-posix.js | |
parent | 65cd2a0f9689b1213bb13a8d48f38d8b9e4ff09f (diff) | |
download | node-new-4bb529d972afaa02d57a2ca29db33ac92f69b81d.tar.gz |
benchmark: use strict mode
Apply strict mode to benchmark code.
PR-URL: https://github.com/nodejs/node/pull/5336
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'benchmark/path/basename-posix.js')
-rw-r--r-- | benchmark/path/basename-posix.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/benchmark/path/basename-posix.js b/benchmark/path/basename-posix.js index d4ea072b57..64da901779 100644 --- a/benchmark/path/basename-posix.js +++ b/benchmark/path/basename-posix.js @@ -1,3 +1,4 @@ +'use strict'; var common = require('../common.js'); var path = require('path'); var v8 = require('v8'); |