forked from vkolgi/tuneup_js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlang-ext.js
73 lines (64 loc) · 1.52 KB
/
lang-ext.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* Extend +destination+ with +source+
*/
function extend(destination, source) {
for (var property in source) {
destination[property] = source[property];
}
return destination;
};
/**
* Dump the properties out a String returned by the function.
*/
function dumpProperties(obj) {
var dumpStr = "";
for (var propName in obj) {
if (obj.hasOwnProperty(propName)) {
if (dumpStr != "") dumpStr += ", ";
dumpStr += (propName + "=" + obj[propName]);
}
}
return dumpStr;
}
extend(Array.prototype, {
/**
* Performs the given function +f+ on each element in the array instance.
* The function is given the index of the current object and the object
* itself for each element in the array.
*/
each: function(f) {
for (i = 0; i < this.length; i++) {
f(i, this[i]);
}
},
/**
* Constructs a new array by applying the given function to each element
* of this array.
*/
map: function(f) {
result = [];
this.each(function(i,e) {
result.push(f(i, e));
});
return result;
},
/**
* Applies the given function to each element in the array until a
* match is made. Otherwise returns null.
* */
contains: function(f) {
for (i = 0; i < this.length; i++) {
if (f(this[i])) return this[i];
}
return null;
}
});
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g,"");
};
String.prototype.ltrim = function() {
return this.replace(/^\s+/,"");
};
String.prototype.rtrim = function() {
return this.replace(/\s+$/,"");
};