Travis build: 855 [ci skip]

This commit is contained in:
Travis CI
2018-01-02 15:53:39 +00:00
parent 61b94a7929
commit b92101f0f5
3 changed files with 26 additions and 16 deletions

View File

@ -10,8 +10,8 @@ const once = fn => {
let called = false;
return function(...args) {
if (called) return;
   called = true;
   return fn.apply(this, args);
called = true;
return fn.apply(this, args);
};
};
```