# library-jws-package

> A simple utility library for vue 3

Latest version **1.0.6** (published 2023-10-30) · ISC license · 0 weekly downloads

## Install

```sh
npm install library-jws-package
pnpm add library-jws-package
yarn add library-jws-package
bun add library-jws-package
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.6 |
| Published | 2023-10-30 |
| First published | 2023-10-30 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 5.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | jws |
| Maintainers | jay_ws |
| Keywords | library |

## Links

- npm: https://www.npmjs.com/package/library-jws-package
- npm.io page: https://npm.io/package/library-jws-package

## Recent versions

- 1.0.6 (latest) — 2023-10-30
- 1.0.5 — 2023-10-30
- 1.0.4 — 2023-10-30
- 1.0.3 — 2023-10-30
- 1.0.2 — 2023-10-30
- 1.0.1 — 2023-10-30
- 1.0.0 — 2023-10-30

## README

## Installation

### NPM

JavaScript library supports [npm](https://www.npmjs.com/package/library-jws-package) under the name `library-jws-package`.

```bash
npm i library-jws-package
```

## Usage [Add Comma]

````javascript
// Basic Use - comma format
import library  from "library-jws-package";

## Examples

```vue 3
<script>
import { defineComponent, ref } from 'vue'
import library  from "library-jws-package";

export default defineComponent({
  setup() {
    const number = ref(10000000)
    const formatComma = ref(null)
    formatComma.value = library.addComma(number.value)
  }
})
</script>

````

## Usage [Browser Version & Name]

````javascript
// Basic Use - get Browser
import library  from "library-jws-package";

## Examples

```vue 3
<script>
import { defineComponent, ref } from 'vue'
import library  from "library-jws-package";

export default defineComponent({
  setup() {
    const browserName = ref(null)
    browserName.value = library.getBrowserName()
    const browserVersion = ref(null)
    browserVersion.value = library.getBrowserVersion()
  }
})
</script>

````

## Usage [OS Name]

````javascript
// Basic Use - get OS
import library  from "library-jws-package";

## Examples

```vue 3
<script>
import { defineComponent, ref } from 'vue'
import library  from "library-jws-package";

export default defineComponent({
  setup() {
    const osName = ref(null)
    osName.value = library.getOSName()
  }
})
</script>

````
## Usage [Math Id]

````javascript
// Basic Use - Math Id
import library  from "library-jws-package";

## Examples

```vue 3
<script>
import { defineComponent, ref } from 'vue'
import library  from "library-jws-package";

export default defineComponent({
  setup() {
    const jsonArray = [{Id: 1, Name: 'Name1'}, {Id: 2, Name: 'Name2'}]
    const newId = ref(null)
    newId.value = library.mathId(jsonArray) //Max id += 1 // *Id = 3
  }
})
</script>
````

---
_Source: https://npm.io/package/library-jws-package · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
