Document Context Modifiers

This commit is contained in:
Andrew Cantino 2020-09-19 21:34:29 -07:00
parent 4a4ccdb603
commit 1c60ccf14a
4 changed files with 111 additions and 0 deletions

View file

@ -0,0 +1,7 @@
const modifier = (text) => {
// This will always result in a shorter string, so no need to truncate it.
return { text: text.replace(/ not /gi, ' ') }
}
// Don't modify this part
modifier(text)