UNPKG

unicode-to-plain-text

Version:

Convert fancy Unicode text to plain ASCII with smart language preservation

7 lines (6 loc) 187 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.pipe = pipe; function pipe(...fns) { return (input) => fns.reduce((acc, fn) => fn(acc), input); }