File tree 7 files changed +82
-0
lines changed
7 files changed +82
-0
lines changed Original file line number Diff line number Diff line change
1
+ # editorconfig.org
2
+ root = true
3
+
4
+ [* ]
5
+ end_of_line = lf
6
+ charset = utf-8
7
+ trim_trailing_whitespace = true
8
+ insert_final_newline = true
9
+ indent_style = space
10
+ indent_size = 4
Original file line number Diff line number Diff line change
1
+ .DS_Store
2
+ node_modules
Original file line number Diff line number Diff line change
1
+ {
2
+ "validateIndentation" : 4
3
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ // Enforcing options
3
+ "eqeqeq" : false ,
4
+ "forin" : true ,
5
+ "indent" : 4 ,
6
+ "noarg" : true ,
7
+ "undef" : true ,
8
+ "unused" : true ,
9
+ "trailing" : true ,
10
+ "evil" : true ,
11
+ "laxcomma" : true ,
12
+
13
+ // Relaxing options
14
+ "onevar" : false ,
15
+ "asi" : false ,
16
+ "eqnull" : true ,
17
+ "expr" : false ,
18
+ "loopfunc" : true ,
19
+ "sub" : true ,
20
+ "browser" : true ,
21
+ "node" : true ,
22
+ "globals" : {
23
+ "self" : true ,
24
+ "define" : true ,
25
+ "describe" : true ,
26
+ "context" : true ,
27
+ "it" : true
28
+ }
29
+ }
Original file line number Diff line number Diff line change
1
+ # async.util.isarray
2
+
3
+ ![ Last version] ( https://img.shields.io/github/tag/async-js/isarray.svg?style=flat-square )
4
+ [ ![ Build Status] ( http://img.shields.io/travis/async-js/isarray/master.svg?style=flat-square )] ( https://travis-ci.org/async-js/isarray )
5
+ [ ![ Dependency status] ( http://img.shields.io/david/async-js/isarray.svg?style=flat-square )] ( https://david-dm.org/async-js/isarray )
6
+ [ ![ Dev Dependencies Status] ( http://img.shields.io/david/dev/async-js/isarray.svg?style=flat-square )] ( https://david-dm.org/async-js/isarray#info=devDependencies )
7
+ [ ![ NPM Status] ( http://img.shields.io/npm/dm/isarray.svg?style=flat-square )] ( https://www.npmjs.org/package/isarray )
8
+ [ ![ Donate] ( https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square )] ( https://paypal.me/kikobeats )
9
+
10
+ > async isarray helper method as module.
11
+
12
+ This module is used internally by [ async] ( https://github.com/async-js/async ) .
13
+
14
+ ## License
15
+
16
+ MIT © [ async-js] ( https://github.com/async-js )
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ module . exports = Array . isArray || function isArray ( obj ) {
4
+ return Object . prototype . toString . call ( obj ) === '[object Array]' ;
5
+ } ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " async.util.isarray" ,
3
+ "description" : " async isarrayhelper method as module." ,
4
+ "main" : " ./index.js" ,
5
+ "repository" : " async-js/async.util" ,
6
+ "author" : {
7
+ "email" : " josefrancisco.verdu@gmail.com" ,
8
+ "name" : " Kiko Beats" ,
9
+ "url" : " https://github.com/Kikobeats"
10
+ },
11
+ "version" : " 0.3.0" ,
12
+ "license" : " MIT" ,
13
+ "keywords" : [
14
+ " async.util" ,
15
+ " isarray"
16
+ ]
17
+ }
You can’t perform that action at this time.
0 commit comments