Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,7 @@ node_modules

# Users Environment Variables
.lock-wscript
.esm-cache
.esm-cache

# Ignore lock file, because this is a library
/package-lock.json
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: node_js
node_js:
- "8"
- "10"
- "12"
- "14.18.0"
- "14"
- "16.0.0"
- "16"
sudo: false
cache:
directories:
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Copyright (c) 2014-2022 Teambition
* Licensed under the MIT license.
*/
const Stream = require('stream')
const Stream = require('node:stream')
const PassThrough = Stream.PassThrough
const slice = Array.prototype.slice

Expand Down
Loading