There is a great conversion for the browser for this: strictify . It inserts 'use strict' in closing your modules.
Just update package.json as follows:
"devDependencies": { "strictify": "^0.2.0" }, "browserify": { "transform": [ "strictify" ] }
source share