1.0.5 • Published 9 years ago
from-after
Licence
ISC
Version
1.0.5
Deps
0
Vulns
0
Weekly
0
from-after
API
operand::fromAfter(pattern)
Returns the trimmed string.
Looks for a pattern in a string and, if the pattern is found, cuts off the string after the first occurrence of the pattern.
Designed for use with :: function bind syntax, as the this property should be the string to trim.
operand
String to trim.
pattern
String to look for and trim after.
Use Case
import {fromAfter} from 'from-after'
const filepath = '~/app/node_modules/foo/bar.js'
filepath::fromAfter('node_modules/')
// -> 'foo/bar.js`
See Also
- from-before ⟼
- from-after ⇤
- until-before ⇥
- until-after ⟻
const text = 'goodbye cruel world'
text::fromBefore('cruel') // 'cruel world'
text::fromAfter('cruel') // ' world'
text::untilBefore('cruel') // 'goodbye '
text::untilAfter('cruel') // 'goodbye cruel'
Colophon
Made by Sebastiaan Deckers in Singapore