UNPKG

motion

Version:

motion - moving development forward

16 lines (14 loc) 310 B
/*! * for-in <https://github.com/jonschlinkert/for-in> * * Copyright (c) 2014-2015, 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; } } };