Sha256: 7e914db79e31e89435bcb9c8ee57cb1cb4287f377e792b622ffd3e3a7708fe0e
Contents?: true
Size: 319 Bytes
Versions: 55
Compression:
Stored size: 319 Bytes
Contents
/*! * for-in <https://github.com/jonschlinkert/for-in> * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. */ 'use strict'; module.exports = function forIn(obj, fn, thisArg) { for (var key in obj) { if (fn.call(thisArg, obj[key], key, obj) === false) { break; } } };
Version data entries
55 entries across 49 versions & 18 rubygems