unjs / unenv

🕊️ Convert javaScript code to be runtime agnostic

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Possible README typo

AustinGil opened this issue · comments

Should this line in the README say node or nodeless?

const envConfig = env(node, {});

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