Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strictModule.js « testModules « test - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 140dd2a82e76d1a818c8d73b7cfad58d6b3c05ff (plain)
1
2
3
4
5
6
7
"use strict"; // run code in ES5 strict mode

function doSomethingUnstrict() {
    var caller = arguments.callee.caller;   // this should throw an error as a proof that strict mode is on
}

exports.doSomethingUnstrict = doSomethingUnstrict;