unenv
unenv copied to clipboard
Possible README typo
Should this line in the README say node or nodeless?
https://github.com/unjs/unenv/blob/a09cedd6f8f48a35643ab6a690a1b4e83cfadfe3/README.md?plain=1#L44
The full snippet is
import { env, nodeless } from "unenv";
const envConfig = env(node, {});
It should be
import { env, node } from "unenv";
const envConfig = env(node, {});
PR welcome
fixed by #172