UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

15 lines (14 loc) 384 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ import { isNullOrUndefined } from './data-helper.js'; const cropPrefix = (input, prefix) => { if (isNullOrUndefined(input) || isNullOrUndefined(prefix)) { return input; } if (input.startsWith(prefix)) { return input.slice(prefix.length); } return input; }; export { cropPrefix };