JSPM

damkar-ui-components

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8
  • Score
    100M100P100Q28153F
  • License MIT

Deskripsi package Anda

Package Exports

  • damkar-ui-components
  • damkar-ui-components/dist/index.esm.js
  • damkar-ui-components/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (damkar-ui-components) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Package Name

Deskripsi singkat tentang package Anda.

Instalasi

npm install @username/package-name

Penggunaan

import { greet, add, multiply } from '@username/package-name';

// Atau menggunakan CommonJS
const { greet, add, multiply } = require('@username/package-name');

console.log(greet('World')); // Hello, World!
console.log(add(2, 3)); // 5
console.log(multiply(4, 5)); // 20

API

greet(name: string): string

Mengembalikan pesan sapaan.

add(a: number, b: number): number

Menambahkan dua angka.

multiply(a: number, b: number): number

Mengalikan dua angka.

Development

# Install dependencies
npm install

# Build package
npm run build

# Run tests
npm test

# Development mode
npm run dev

License

MIT