2010-06-10 13:30:32 +00:00
|
|
|
function makeSlug(val, sep) { // code largely inspired by http://www.thewebsitetailor.com/jquery-slug-plugin/
|
2010-07-23 20:20:09 +00:00
|
|
|
if (typeof val == 'undefined') return('');
|
|
|
|
if (typeof sep == 'undefined') sep = '_';
|
|
|
|
var alphaNumRegexp = new RegExp('[^a-zA-Z0-9\\' + sep + ']', 'g');
|
|
|
|
var avoidDuplicateRegexp = new RegExp('[\\' + sep + ']{2,}', 'g');
|
|
|
|
val = val.replace(/\s/g, sep);
|
|
|
|
val = val.replace(alphaNumRegexp, '');
|
|
|
|
val = val.replace(avoidDuplicateRegexp, sep);
|
|
|
|
return val.toLowerCase();
|
2010-06-10 13:30:32 +00:00
|
|
|
}
|
2010-06-14 13:04:01 +00:00
|
|
|
|
2010-12-30 14:24:47 +00:00
|
|
|
(function() {
|
|
|
|
String.prototype.trim = function() {
|
|
|
|
return this.replace(/^\s+/g, '').replace(/\s+$/g, '');
|
|
|
|
}
|
2011-03-20 10:21:07 +00:00
|
|
|
})();
|
|
|
|
|
|
|
|
Object.size = function(obj) {
|
|
|
|
var size = 0, key;
|
|
|
|
for (key in obj) {
|
|
|
|
if (obj.hasOwnProperty(key)) size++;
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
};
|