diff --git a/stdlib-candidate/null-stream.nu b/stdlib-candidate/null-stream.nu deleted file mode 100644 index 224f036c..00000000 --- a/stdlib-candidate/null-stream.nu +++ /dev/null @@ -1,10 +0,0 @@ -# Examples -# redirect to the null stream -# > echo foo out> (null-stream) -def null-stream []: nothing -> string { - if $nu.os-info.name == "windows" { - "NUL:" - } else { - "/dev/null" - } -}