UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

17 lines (14 loc) 311 B
/*! * 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; } } };