Skip to content

alco/pipespect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pipespect

Inspect each stage of a pipeline.

import Enum

[1,2,3] |> reverse |> map(& &1*&1) |> join(" . ")
# output: none

use Pipespect
[1,2,3] |> reverse |> map(& &1*&1) |> join(" . ")
# output:
#   [3, 2, 1]
#   [9, 4, 1]
#   "9 . 4 . 1"

License

This software is licensed under the MIT license.

About

Auto-inspect for pipes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages