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

strictModule.js « testLib - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d6e3873218c9d4bb1b646403adb6d83b86149d4 (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;