(fn)
| 1333 | }) |
| 1334 | |
| 1335 | function once (fn) { |
| 1336 | var f = function () { |
| 1337 | if (f.called) return f.value |
| 1338 | f.called = true |
| 1339 | return f.value = fn.apply(this, arguments) |
| 1340 | } |
| 1341 | f.called = false |
| 1342 | return f |
| 1343 | } |
| 1344 | |
| 1345 | },{"wrappy":8}],10:[function(require,module,exports){ |
| 1346 | if (typeof Object.create === 'function') { |
no outgoing calls
no test coverage detected