From 64c1be0c50329ee8cf06e16e04f537faa3ab220b Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Wed, 1 Mar 2017 14:15:11 -0800 Subject: [PATCH] =?UTF-8?q?fix(zipper):=20add=20=E2=80=98use=20strict?= =?UTF-8?q?=E2=80=99=20to=20exampleZipper.js=20To=20beat=20error=20?= =?UTF-8?q?=E2=80=9CSyntaxError:=20Block-scoped=20declarations=20(let,=20c?= =?UTF-8?q?onst,=20function,=20class)=20not=20yet=20supported=20outside=20?= =?UTF-8?q?strict=20mode=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/example-zipper/exampleZipper.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/example-zipper/exampleZipper.js b/tools/example-zipper/exampleZipper.js index a92e45983a..4299ab8839 100644 --- a/tools/example-zipper/exampleZipper.js +++ b/tools/example-zipper/exampleZipper.js @@ -1,3 +1,5 @@ +'use strict'; + // Canonical path provides a consistent path (i.e. always forward slashes) across different OSes var path = require('canonical-path'); var jsonfile = require('jsonfile');