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

detectStrictMode.js « lib - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0107d081179cf9d30c20549343a5e613f157ce8 (plain)
1
2
3
4
5
function detectStrictMode(src) {
    return (/^\s*"use strict";/g).test(src);
}

module.exports = detectStrictMode;