/** * Test to verify if we support strict mode (flags) * * @author Jared Allard * @version 0.0.1 * @license MIT **/ // "use strict"; w/o --use_strict let isStrict = (function() { return !this; })(); console.log(isStrict);