This commit is contained in:
Ken Chau 2020-05-25 14:47:35 -07:00
Родитель 5e9cb6435b
Коммит c9682b8128
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -5,7 +5,7 @@ Run a promise (perhaps with p-queue) generating a profiler json suitable to be c
## Install
```
$ npm install p-profile
$ npm install p-profiler
```
## Usage

Просмотреть файл

@ -77,8 +77,12 @@ export default class Profiler {
});
}
/**
* Writes out the profiler.json and returns the output path
*/
output() {
return fs.writeFileSync(this.outputPath, JSON.stringify(this.events));
fs.writeFileSync(this.outputPath, JSON.stringify(this.events));
return this.outputPath;
}
}