This will allow introspecting language support, eg ES2015 etc. eg: ```js function isConstSupported() { try { new Function('const foo = 3'); return true; catch (e) { return false; } } ```