export const encodeHtml = function encodeHtml(str) { return str.replace(//g, '>') } export const isString = obj => typeof obj === 'string' || obj instanceof String export const isNonEmptyString = obj => obj && isString(obj) export const isPureObject = function isPureObject(o) { return !Array.isArray(o) && typeof o === 'object' } export const isUrl = function isUrl(url) { return ['http', '//'].some(str => url.startsWith(str)) } export const urlJoin = function urlJoin() { return [].slice .call(arguments) .join('/') .replace(/\/+/g, '/') .replace(':/', '://') } /** * Wraps value in array if it is not already an array * * @param {any} value * @return {array} */ export const wrapArray = value => Array.isArray(value) ? value : [value] const WHITESPACE_REPLACEMENTS = [ [/[ \t\f\r]+\n/g, '\n'], // strip empty indents [/{\n{2,}/g, '{\n'], // strip start padding from blocks [/\n{2,}([ \t\f\r]*})/g, '\n$1'], // strip end padding from blocks [/\n{3,}/g, '\n\n'], // strip multiple blank lines (1 allowed) [/\n{2,}$/g, '\n'] // strip blank lines EOF (0 allowed) ] export const stripWhitespace = function stripWhitespace(string) { WHITESPACE_REPLACEMENTS.forEach(([regex, newSubstr]) => { string = string.replace(regex, newSubstr) }) return string }