mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 00:27:24 -04:00
17 lines
311 B
JavaScript
17 lines
311 B
JavaScript
|
/*!
|
||
|
* 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;
|
||
|
}
|
||
|
}
|
||
|
};
|