(seq, ...args)
| 142999 | return sequence(seq).lastIndexOf(...args); |
| 143000 | } |
| 143001 | function slice(seq, ...args) { |
| 143002 | return sequence(seq).slice(...args); |
| 143003 | } |
| 143004 | function replace(str, pattern, repl) { |
| 143005 | if ((0, _vegaUtil.isFunction)(repl)) (0, _vegaUtil.error)("Function argument passed to replace."); |
| 143006 | return String(str).replace(pattern, repl); |
nothing calls this directly
no test coverage detected