File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Milan Raj <rajsite@users.noreply.github.com>
2020Momtchil Momtchev <momtchil@momtchev.com>
2121Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2222Philipp Burckhardt <pburckhardt@outlook.com>
23+ Pranav <85227306+Pranavchiku@users.noreply.github.com>
2324Ricky Reusser <rsreusser@gmail.com>
2425Ryan Seal <splrk@users.noreply.github.com>
2526Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 2121// MODULES //
2222
2323var tape = require ( 'tape' ) ;
24- var Buffer = require ( '@stdlib/buffer-ctor ' ) ;
24+ var string2buffer = require ( '@stdlib/buffer-from-string ' ) ;
2525var 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
You can’t perform that action at this time.
0 commit comments