main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
733 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 |
|
---|
3 | Object.defineProperty(exports, "__esModule", {
|
---|
4 | value: true
|
---|
5 | });
|
---|
6 | exports.transformFile = void 0;
|
---|
7 | exports.transformFileAsync = transformFileAsync;
|
---|
8 | exports.transformFileSync = transformFileSync;
|
---|
9 | const transformFile = exports.transformFile = function transformFile(filename, opts, callback) {
|
---|
10 | if (typeof opts === "function") {
|
---|
11 | callback = opts;
|
---|
12 | }
|
---|
13 | callback(new Error("Transforming files is not supported in browsers"), null);
|
---|
14 | };
|
---|
15 | function transformFileSync() {
|
---|
16 | throw new Error("Transforming files is not supported in browsers");
|
---|
17 | }
|
---|
18 | function transformFileAsync() {
|
---|
19 | return Promise.reject(new Error("Transforming files is not supported in browsers"));
|
---|
20 | }
|
---|
21 | 0 && 0;
|
---|
22 |
|
---|
23 | //# sourceMappingURL=transform-file-browser.js.map
|
---|
Note:
See
TracBrowser
for help on using the repository browser.