UNPKG

node-es5

Version:

A shim to always run node in es5 proper "strict mode"

12 lines (9 loc) 194 B
// This IIFE is redundant when run with node --use_strict (function () { "use strict"; function speak() { console.log('Hello World!'); } setInterval(speak, 1000); speak(); }());