UNPKG

has-strict-mode

Version:

Does the current JS environment have strict mode? ES5+ should; but let's not assume.

7 lines (5 loc) 104 B
'use strict'; /** @type {import('.')} */ module.exports = function hasStrictMode() { return !this; };