From 2160b7265dc975fc3374b3bd9795e125f9115f9e Mon Sep 17 00:00:00 2001 From: Nick Van Doorn Date: Thu, 11 Oct 2018 17:39:00 -0700 Subject: Specify filename at top --- demos/12-manual-code-splitting-a.example.js | 1 + demos/12-manual-code-splitting-b.example.js | 1 + 2 files changed, 2 insertions(+) diff --git a/demos/12-manual-code-splitting-a.example.js b/demos/12-manual-code-splitting-a.example.js index 8bb040a..e3ea5fe 100644 --- a/demos/12-manual-code-splitting-a.example.js +++ b/demos/12-manual-code-splitting-a.example.js @@ -1,3 +1,4 @@ +// 12-manual-code-splitting-a.example.js const COST_OF_ITEM = 15 // We use this immediately invoked anonymous function // to create a private, non global scope (usually called a module). diff --git a/demos/12-manual-code-splitting-b.example.js b/demos/12-manual-code-splitting-b.example.js index c5a08ca..1754f25 100644 --- a/demos/12-manual-code-splitting-b.example.js +++ b/demos/12-manual-code-splitting-b.example.js @@ -1,3 +1,4 @@ +// 12-manual-code-splitting-b.example.js let AccountModule = (function() { let customerBalance = {} return { -- cgit v1.2.3