@radixdlt/tx-parser
Version:
Parsing of Radix Engine transactions and instructions
8 lines • 325 B
JavaScript
;
/// Removes LEADING tabs only
// export const trimWS = (str: string): string => str.replace(`/^\t+/gm`, '')
Object.defineProperty(exports, "__esModule", { value: true });
exports.noTab = void 0;
const noTab = (str) => str.replace(`/\t/g`, '');
exports.noTab = noTab;
//# sourceMappingURL=removeWhitespace.js.map