Skip to content

Commit e652f76

Browse files
committed
Auto-generated commit
1 parent da5801e commit e652f76

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/npm_downloads.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
# Run this workflow weekly:
2525
schedule:
2626
# cron: '<minutes> <hours> <day_of_month> <month> <day_of_week>'
27-
- cron: '0 8 * * 6'
27+
- cron: '14 14 * * 0'
2828

2929
# Allow the workflow to be manually run:
3030
workflow_dispatch:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
# Run workflow on a weekly schedule:
2525
schedule:
2626
# * is a special character in YAML so you have to quote this string
27-
- cron: '30 1 * * 6'
27+
- cron: '14 14 * * 0'
2828

2929
# Allow the workflow to be manually run:
3030
workflow_dispatch:

.github/workflows/test_install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
# Run workflow on a weekly schedule:
2525
schedule:
2626
# * is a special character in YAML so you have to quote this string
27-
- cron: '30 1 * * 6'
27+
- cron: '14 14 * * 0'
2828

2929
# Run workflow upon completion of `publish` workflow run:
3030
workflow_run:

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Milan Raj <rajsite@users.noreply.github.com>
2020
Momtchil Momtchev <momtchil@momtchev.com>
2121
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2222
Philipp Burckhardt <pburckhardt@outlook.com>
23+
Pranav <85227306+Pranavchiku@users.noreply.github.com>
2324
Ricky Reusser <rsreusser@gmail.com>
2425
Ryan Seal <splrk@users.noreply.github.com>
2526
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"@stdlib/assert-is-browser": "^0.0.x",
5252
"@stdlib/assert-is-windows": "^0.0.x",
5353
"@stdlib/bench": "^0.0.x",
54-
"@stdlib/buffer-ctor": "^0.0.x",
54+
"@stdlib/buffer-from-string": "^0.0.x",
5555
"@stdlib/process-exec-path": "^0.0.x",
5656
"@stdlib/string-from-code-point": "^0.0.x",
5757
"@stdlib/string-replace": "^0.0.x",

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var tape = require( 'tape' );
24-
var Buffer = require( '@stdlib/buffer-ctor' );
24+
var string2buffer = require( '@stdlib/buffer-from-string' );
2525
var removeUTF8BOM = require( './../lib' );
2626

2727

@@ -66,7 +66,7 @@ tape( 'the function removes a UTF-8 byte order mark (BOM) from the beginning of
6666
str = removeUTF8BOM( '\ufeffbeep' );
6767
t.equal( str, 'beep', 'returns beep' );
6868

69-
str = (new Buffer( '\ufeffboop' )).toString();
69+
str = string2buffer( '\ufeffboop' ).toString();
7070
str = removeUTF8BOM( str );
7171
t.equal( str, 'boop', 'returns boop' );
7272

0 commit comments

Comments
 (0)