UNPKG

strict-supported

Version:

Check if strict mode is supported.

14 lines (12 loc) 223 B
/** * If strict mode is supported. * @example * ``` * const strictSupported = require("strict-supported"); * * strictSupported; * //=> true * ``` */ declare const strictSupported: boolean export = strictSupported;