Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
audinue committed Jun 3, 2016
1 parent d63489b commit 45a0148
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 6 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# utility-js

JavaScript utility functions.

## Install

```
npm install utility-js
```

## API


### forEach

```
function forEach(
array: (Array | ArrayLikeObject),
callback: Function
): Array;
callback = function (
value: Object,
index: Number,
array: (Array | ArrayLikeObject)
): (boolean | undefined);
```
23 changes: 17 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
{
"name": "utility-js",
"version": "0.1.0",
"description": "Utility functions.",
"main": "utility.js",
"author": "Audi Nugraha <[email protected]>",
"license": "MIT"
"name": "utility-js",
"version": "0.1.0",
"description": "JavaScript utility functions.",
"main": "utility.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audinue/utility-js.git"
},
"author": "Audi Nugraha <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audinue/utility-js/issues"
},
"homepage": "https://github.com/audinue/utility-js#readme"
}

0 comments on commit 45a0148

Please sign in to comment.