forked from vkolgi/tuneup_js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlang-ext.js
50 lines (43 loc) · 1 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
/**
* 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, {
/**
* 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+$/,"");
};