Hi! I fixed some code for you! #33
No reviewers
Labels
No labels
Bug
Enhancement
Feature Request
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: code/wrench-js#33
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "clean"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi!
I am migrationBot
Did you know that
path.{exists,existsSync}was moved tofs.{exists,existsSync}, and thattty.setRawMode(mode)was moved totty.ReadStream#setRawMode()(i.e.process.stdin.setRawMode()) in node v0.8.0? Read more @API changes between v0.6 and v0.8I automatically made some changes I think will help you migrate your codebase to node v0.8.0, please review these changes and merge them if you feel they are useful, If they are not you can ignore this Pull Request.
For backwards compatibility please use something like
fs.existsSync || (fs.existsSync = path.existsSync);,fs.exists || (fs.exists = path.exists);, andtty.setRawMode || (tty.setRawMode = process.stdin.setRawMode);respectively.Have a Nice Day!
--migrationBot
Why thank you migrationBot, you're so kind.