(func)
| 16277 | */ |
| 16278 | |
| 16279 | var createMicrosoftUnsafeLocalFunction = function (func) { |
| 16280 | if (typeof MSApp !== 'undefined' && MSApp.execUnsafeLocalFunction) { |
| 16281 | return function (arg0, arg1, arg2, arg3) { |
| 16282 | MSApp.execUnsafeLocalFunction(function () { |
| 16283 | return func(arg0, arg1, arg2, arg3); |
| 16284 | }); |
| 16285 | }; |
| 16286 | } else { |
| 16287 | return func; |
| 16288 | } |
| 16289 | }; |
| 16290 | |
| 16291 | module.exports = createMicrosoftUnsafeLocalFunction; |
| 16292 | },{}],116:[function(_dereq_,module,exports){ |
no outgoing calls
no test coverage detected
searching dependent graphs…