This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* unformat method: reverse formatting | |
* @author Markus J Doetsch [email protected] | |
*/ | |
window.unformat = function (formatting, val) { | |
"use strict"; | |
// only work with (formatted) strings | |
if (typeof val !== 'string') { |