0.0.1 • Published 3 years ago

is-java v0.0.1

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

isJava.js

This library contains a set of tools that'll help you determine if you are currently on any Java's environment

Out Of the box

import { isJava } from 'is-java';

console.log(isJava());

Other examples

You can use this asynchronous example if needed:

import { isJavaAsync } from 'is-java';

const example = async () => {
  const result = await isJavaAsync();
  return result;
}

example.then((result) => console.log(result));

This package can be kinda useful specially if you need to understand the relationship between Java and Javascript.