UNPKG

@shopify/shopify-api

Version:

Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks

9 lines (7 loc) 283 B
function splitN(str, sep, maxNumParts) { const parts = str.split(sep); const maxParts = Math.min(Math.abs(maxNumParts), parts.length); return [...parts.slice(0, maxParts - 1), parts.slice(maxParts - 1).join(sep)]; } export { splitN }; //# sourceMappingURL=utils.mjs.map