UNPKG

346 BTypeScriptView Raw
1// Type definitions for is-utf8 0.2
2// Project: https://github.com/wayfind/is-utf8#readme
3// Definitions by: Fredrik Lengstrand <https://github.com/fredriklengstrand>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6/// <reference types="node" />
7
8declare function isUtf8(buffer: ArrayLike<number>): boolean;
9
10export = isUtf8;