Sha256: fef56045f88bf9134421d36ba275a1e8eaf0e11df9d939c8edec191441078c10
Contents?: true
Size: 310 Bytes
Versions: 16
Compression:
Stored size: 310 Bytes
Contents
/*! * 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; } } };
Version data entries
16 entries across 16 versions & 3 rubygems