UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

6 lines (5 loc) 291 B
import type { PhpAssoc, PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; type StrtrValue = PhpRuntimeValue; type ReplacementMap = PhpAssoc<StrtrValue>; export declare function strtr(str: string, trFrom: string | ReplacementMap | string[], trTo?: string | StrtrValue[]): string; export {};