UNPKG

@agnostack/taxjar-request

Version:

Please contact agnoStack via info@agnostack.com for any questions

15 lines 461 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function removeLeadingSlash(string) { return string.replace(/^\/+/, ''); } exports.removeLeadingSlash = removeLeadingSlash; exports.safeParse = function (object) { if (object && typeof object === 'string' && (object.startsWith('{') || object.startsWith('['))) { object = JSON.parse(object); } return object; }; //# sourceMappingURL=utils.js.map