for-in

WebJar for for-in

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.bowergithub.jonschlinkert
Идентификатор

Идентификатор

for-in
Последняя версия

Последняя версия

1.0.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

for-in
WebJar for for-in
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/jonschlinkert/for-in

Скачать for-in

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.bowergithub.jonschlinkert/for-in/ -->
<dependency>
    <groupId>org.webjars.bowergithub.jonschlinkert</groupId>
    <artifactId>for-in</artifactId>
    <version>1.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bowergithub.jonschlinkert/for-in/
implementation 'org.webjars.bowergithub.jonschlinkert:for-in:1.0.2'
// https://jarcasting.com/artifacts/org.webjars.bowergithub.jonschlinkert/for-in/
implementation ("org.webjars.bowergithub.jonschlinkert:for-in:1.0.2")
'org.webjars.bowergithub.jonschlinkert:for-in:jar:1.0.2'
<dependency org="org.webjars.bowergithub.jonschlinkert" name="for-in" rev="1.0.2">
  <artifact name="for-in" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bowergithub.jonschlinkert', module='for-in', version='1.0.2')
)
libraryDependencies += "org.webjars.bowergithub.jonschlinkert" % "for-in" % "1.0.2"
[org.webjars.bowergithub.jonschlinkert/for-in "1.0.2"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

for-in NPM version NPM monthly downloads NPM total downloads Linux Build Status

Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning false. JavaScript/Node.js

Install

Install with npm:

$ npm install --save for-in

Usage

var forIn = require('for-in');

var obj = {a: 'foo', b: 'bar', c: 'baz'};
var values = [];
var keys = [];

forIn(obj, function (value, key, o) {
  keys.push(key);
  values.push(value);
});

console.log(keys);
//=> ['a', 'b', 'c'];

console.log(values);
//=> ['foo', 'bar', 'baz'];

About

Related projects

  • arr-flatten: Recursively flatten an array or arrays. This is the fastest implementation of array flatten. | homepage
  • collection-map: Returns an array of mapped values from an array or object. | homepage
  • for-own: Iterate over the own enumerable properties of an object, and return an object with properties… more | homepage

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Contributors

Commits Contributor
16 jonschlinkert
2 paulirish

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2017, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.4.2, on February 28, 2017.

Версии библиотеки

Версия
1.0.2