1.0.3 • Published 2 years ago

isdevjs v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

isdevjs

check if js environment is dev or prod

Returns boolean

import isDev from "isdevjs";

console.log(isDev());

Have it return values or function

import isDev from "isdevjs";

const func = isDev(
  () => "dev",
  () => "prod"
);

func();

const domain = isDev(window.location.hostname, "site.com");
1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago