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

Version Path
optimacms-0.1.61 spec/dummy/node_modules/for-in/index.js
disco_app-0.18.0 test/dummy/node_modules/for-in/index.js
disco_app-0.18.2 test/dummy/node_modules/for-in/index.js
disco_app-0.16.1 test/dummy/node_modules/for-in/index.js
disco_app-0.15.2 test/dummy/node_modules/for-in/index.js
disco_app-0.18.4 test/dummy/node_modules/for-in/index.js
disco_app-0.18.1 test/dummy/node_modules/for-in/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/for-in/index.js
disco_app-0.14.0 test/dummy/node_modules/for-in/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/for-in/index.js
tang-0.2.1 spec/tang_app/node_modules/for-in/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/for-in/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/for-in/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/for-in/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/for-in/index.js
tang-0.2.0 spec/tang_app/node_modules/for-in/index.js
tang-0.1.0 spec/tang_app/node_modules/for-in/index.js
tang-0.0.9 spec/tang_app/node_modules/for-in/index.js
enju_library-0.3.8 spec/dummy/node_modules/for-in/index.js
jass-0.9.5 vendor/node_modules/for-in/index.js