Skip to content

Commit 1a8f4b3

Browse files
committed
remove string/array linq extensions
1 parent 16671a2 commit 1a8f4b3

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

build/multiplex.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*--------------------------------------------------------------------------
22
* Multiplex.js - Comprehensive data-structure and LINQ library for JavaScript.
3-
* Ver 0.9.2 (May 7, 2015)
3+
* Ver 0.9.3 (May 22, 2015)
44
*
55
* Created and maintained by Kamyar Nazeri <[email protected]>
66
* Licensed under Apache License Version 2.0
@@ -2277,7 +2277,7 @@
22772277

22782278

22792279
/**
2280-
* Represents a generic collection of key/value pairs.
2280+
* Represents a collection of keys and values.
22812281
*/
22822282
var __Dictionary = (function () {
22832283

@@ -5786,8 +5786,6 @@
57865786
/* Modules
57875787
---------------------------------------------------------------------- */
57885788

5789-
$enumerableExtend(ARRAY);
5790-
$enumerableExtend(STRING);
57915789
$enumerableExtend(__Enumerable);
57925790

57935791

build/multiplex.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/multiplex.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/javascript/multiplex.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*--------------------------------------------------------------------------
22
* Multiplex.js - Comprehensive data-structure and LINQ library for JavaScript.
3-
* Ver 0.9.2 (May 7, 2015)
3+
* Ver 0.9.3 (May 22, 2015)
44
*
55
* Created and maintained by Kamyar Nazeri <[email protected]>
66
* Licensed under Apache License Version 2.0
@@ -2277,7 +2277,7 @@
22772277

22782278

22792279
/**
2280-
* Represents a generic collection of key/value pairs.
2280+
* Represents a collection of keys and values.
22812281
*/
22822282
var __Dictionary = (function () {
22832283

@@ -5786,8 +5786,6 @@
57865786
/* Modules
57875787
---------------------------------------------------------------------- */
57885788

5789-
$enumerableExtend(ARRAY);
5790-
$enumerableExtend(STRING);
57915789
$enumerableExtend(__Enumerable);
57925790

57935791

@@ -5797,7 +5795,7 @@
57975795
* @returns {Enumerable}
57985796
*/
57995797
function multiplex(value) {
5800-
return $enumerable(value);
5798+
return $is(value, __Enumerable) ? value : new __Enumerable(value);
58015799
}
58025800

58035801

0 commit comments

Comments
 (0)