Skip to content

Commit f53bc4e

Browse files
committed
chore: rename branch master to main
1 parent dd81d7d commit f53bc4e

3 files changed

Lines changed: 14 additions & 8 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Node.js CI
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88

99
jobs:

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
release:
@@ -14,4 +14,3 @@ jobs:
1414
secrets:
1515
github-token: ${{ secrets.BOT_TOKEN }}
1616
npm-token: ${{ secrets.NPM_BOT_TOKEN }}
17-

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,29 @@ The algorithm is based on the document [_Baseline correction by improved iterati
1818
```js
1919
import baselineCorrection from 'ml-baseline-correction-regression';
2020

21-
let time = [/* ... */];
22-
let originalSignal = [/* ... */];
23-
const {corrected, delta, iteration, baseline} = baselineCorrection(time, originalSignal);
21+
let time = [
22+
/* ... */
23+
];
24+
let originalSignal = [
25+
/* ... */
26+
];
27+
const { corrected, delta, iteration, baseline } = baselineCorrection(
28+
time,
29+
originalSignal,
30+
);
2431
```
2532

2633
## [API Documentation](https://mljs.github.io/baseline-correction-regression/)
2734

2835
## License
2936

30-
[MIT](./LICENSE)
37+
[MIT](./LICENSE)
3138

3239
[npm-image]: https://img.shields.io/npm/v/ml-baseline-correction-regression.svg
3340
[npm-url]: https://npmjs.org/package/ml-baseline-correction-regression
3441
[codecov-image]: https://img.shields.io/codecov/c/github/mljs/baseline-correction-regression.svg
3542
[codecov-url]: https://codecov.io/gh/mljs/baseline-correction-regression
36-
[ci-image]: https://github.com/mljs/baseline-correction-regression/workflows/Node.js%20CI/badge.svg?branch=master
43+
[ci-image]: https://github.com/mljs/baseline-correction-regression/workflows/Node.js%20CI/badge.svg?branch=main
3744
[ci-url]: https://github.com/mljs/baseline-correction-regression/actions?query=workflow%3A%22Node.js+CI%22
3845
[download-image]: https://img.shields.io/npm/dm/ml-baseline-correction-regression.svg
3946
[download-url]: https://npmjs.org/package/ml-baseline-correction-regression

0 commit comments

Comments
 (0)