mirror of
https://github.com/flynx/types.js.git
synced 2025-10-29 02:20:07 +00:00
typo fix...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
7c31ae0765
commit
5b88d49dbd
2
Array.js
2
Array.js
@ -234,7 +234,7 @@ object.Mixin('ArrayProtoMixin', 'soft', {
|
||||
// location...
|
||||
// NOTE: this will get depricated as soon as JS redoes its .indexOf(..)
|
||||
index: function(value){
|
||||
for(var i = 0; i < this.length && this[i] !== elem; i++){}
|
||||
for(var i = 0; i < this.length && this[i] !== value; i++){}
|
||||
return i == this.length ? -1 : i },
|
||||
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ig-types",
|
||||
"version": "5.0.19",
|
||||
"version": "5.0.20",
|
||||
"description": "Generic JavaScript types and type extensions...",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user