12345678910111213141516 |
- /*!
- * for-in <https://github.com/jonschlinkert/for-in>
- *
- * Copyright (c) 2014-2016, Jon Schlinkert.
- * Licensed under the MIT License.
- */
- 'use strict';
- module.exports = function forIn(o, fn, thisArg) {
- for (var key in o) {
- if (fn.call(thisArg, o[key], key, o) === false) {
- break;
- }
- }
- };
|