fix(zipper): add ‘use strict’ to exampleZipper.js (#3327)

To beat error “SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode”
This commit is contained in:
Ward Bell 2017-03-01 14:53:23 -08:00 committed by GitHub
parent 47382301ab
commit 56ed772b39
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,5 @@
'use strict';
// Canonical path provides a consistent path (i.e. always forward slashes) across different OSes // Canonical path provides a consistent path (i.e. always forward slashes) across different OSes
var path = require('canonical-path'); var path = require('canonical-path');
var jsonfile = require('jsonfile'); var jsonfile = require('jsonfile');