Skip to content
Snippets Groups Projects
istd-utils.js 212 B
Newer Older
onnohaldar's avatar
onnohaldar committed
/**
 * iStandaarden Utiltily Helper Functions
 */

/**
 * Create Basic URL without Spaces and URI Encoding
 */
function urlize(target) {
    return encodeURIComponent(target.split(' ').join('').toLowerCase());
}