UNPKG

190 BJavaScriptView Raw
1"use strict";
2
3const startsWith = require('mout/string/startsWith');
4
5module.exports = function(str, start) {
6 return startsWith(str, start) ? str.substr(start.length) : str.toString();
7};