Add missed "use strict"

This commit is contained in:
Kagami Hiiragi 2015-11-13 22:04:56 +03:00
parent 8310ff1a9c
commit d2c0cebc96

View File

@ -3,10 +3,12 @@
* addon and makes it available for Node. * addon and makes it available for Node.
*/ */
"use strict";
try { try {
module.exports = require("../build/Release/worker"); module.exports = require("../build/Release/worker");
} catch(e) { } catch(e) {
// Do nothing for a moment. Everything will work except the functions // Do nothing for a moment. Everything will work except the functions
// that uses worker routines. // that use worker routines.
// TODO(Kagami) Provide pure JS fallback. // TODO(Kagami) Provide pure JS fallback.
} }