Ensure or discover if Oxford commas are being used in English language text.
> npm install ensure-oxford-commas
import { ensureOxfordCommas, isMissingOxfordCommas } from 'ensure-oxford-commas';
ensureOxfordCommas('Please choose between red, green and blue.'); // throws
ensureOxfordCommas('Please choose between red, green, and blue.'); // does not throw
isMissingOxfordCommas('Please choose between red, green and blue.'); // true
isMissingOxfordCommas('Please choose between red, green, and blue.'); // falseKen Dale
MIT
They're welcome! Open an issue or send a pull request!