An open API service indexing awesome lists of open source software.

https://github.com/arikato111/find-grade

find grade of school with nodejs library
https://github.com/arikato111/find-grade

grade npm-package score typescript

Last synced: 3 months ago
JSON representation

find grade of school with nodejs library

Awesome Lists containing this project

README

        

#

find-grade


Github License
GitHub Package.json Version
GitHub Issues
GitHub Pull Requests
GitHub Contributors
repo size

random one or many text

## Installing

Install with NPM
```
npm install find-grade
```
or install with Yarn
```
yarn add find-grade
```

## Example

### with `import`

```js
import findGrade from "find-grade";

let score = 60;
let result = findgrade(score);
console.log(result);
// output = 2
```

### with `require`

```js
const findGrade = require("find-grade").default;

let score = 60;
let result = findgrade(score);
console.log(result);
// output = 2
```