Skip to content

Instantly share code, notes, and snippets.

View mjdrocket's full-sized avatar

Markus J Doetsch mjdrocket

  • Rocket Internet
  • Berlin
View GitHub Profile
/**
* unformat method: reverse formatting
* @author Markus J Doetsch markus.doetsch@rocket-internet.de
*/
window.unformat = function (formatting, val) {
"use strict";
// only work with (formatted) strings
if (typeof val !== 'string') {