0
1
Fork 0
hedera-web-mindshore/package/usr/share/hedera-web/js/vn/value.js

49 lines
901 B
JavaScript
Raw Normal View History

Vn.Value =
{
regexpNumber: /%\.([0-9]+)d/g
,regexpString: /%s/g
,compare: function (a, b)
{
if (a === b)
return true;
if (typeof a === typeof b && a instanceof Date)
return a.getTime () === b.getTime ();
return false;
}
,format: function (value, format)
{
if (value === null || value === undefined)
return '';
if (format)
switch (typeof value)
{
case 'number':
return format.replace (this.regexpNumber,
this.replaceNumber.bind (null, value));
case 'string':
return format.replace (this.regexpString,
this.replaceString.bind (null, value));
case 'object':
if (value instanceof Date)
return Vn.Date.strftime (value, format);
}
return value;
}
,replaceNumber: function (value, token, digits)
{
return new Number (value).toFixed (parseInt (digits));
}
,replaceString: function (value)
{
return value;
}
};