Sha256: 81098ce30516484e496aa31d78869d7f86473cbf53ddd6fce7157afad3330fe6
Contents?: true
Size: 716 Bytes
Versions: 7
Compression:
Stored size: 716 Bytes
Contents
// duplicated from transform-file so we do not have to import anything here type TransformFile = { (filename: string, callback: Function): void; (filename: string, opts: any, callback: Function): void; }; export const transformFile: TransformFile = function transformFile( filename, opts, callback?, ) { if (typeof opts === "function") { callback = opts; } callback(new Error("Transforming files is not supported in browsers"), null); }; export function transformFileSync(): never { throw new Error("Transforming files is not supported in browsers"); } export function transformFileAsync() { return Promise.reject( new Error("Transforming files is not supported in browsers"), ); }
Version data entries
7 entries across 7 versions & 1 rubygems