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

Version Path
disco_app-0.16.1 test/dummy/node_modules/@babel/core/src/transform-file-browser.ts
disco_app-0.15.2 test/dummy/node_modules/@babel/core/src/transform-file-browser.ts
disco_app-0.18.4 test/dummy/node_modules/@babel/core/src/transform-file-browser.ts
disco_app-0.18.1 test/dummy/node_modules/@babel/core/src/transform-file-browser.ts
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/@babel/core/src/transform-file-browser.ts
disco_app-0.14.0 test/dummy/node_modules/@babel/core/src/transform-file-browser.ts
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/@babel/core/src/transform-file-browser.ts