1.0.1 • Published 5 years ago

sanctuary-destruct v1.0.1

Weekly downloads
4
License
ISC
Repository
github
Last release
5 years ago

sanctuary-destruct

npm Build Status

demo

  • Cleans up required or imported Sanctuary functions when using destructing assignment.
  • Reads functions from local Sanctuary instance based on the current working directory.

install

npm install -g sanctuary-destruct

usage

Prints the modified file contents to stdout.

file as argument

sanctuary-destruct path/to/file.js

stdin

cat path/to/file.js | sanctuary-destruct

vim

%!sanctuary-destruct

Or use Preserve function that restores cursor position after:

:call Preserve("%!sanctuary-destruct")

Sublime Text

Install the FilterPipes plugin and add a key binding like

{ "keys": ["alt+shift+d"], "command": "filter_pipes_process", "args": {"command": "sanctuary-destruct"}}

Acknowledgements

Big thanks to Raine Virta whose ramda-destruct package was the inspiration for this.