In google-apps-script script file is it possible to set 'use strict'? I've created a function to test this
function a () { //logs - function a
"use strict";
Logger.log(arguments.callee);
}
If strict mode was being enforced, I would think this statement would throw a TypeError.