JSPM

@sirmews/is-awesome

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q26560F
  • License Unlicense

Determines the level of awesomeness based on whether someone follows Jade

Package Exports

  • @sirmews/is-awesome
  • @sirmews/is-awesome/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 (@sirmews/is-awesome) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

is-awesome

A simple package to determine level of awesome based on whether a supplied string of followers includes Jade.

Installation

npm install is-awesome
# or
bun install is-awesome

Usage

import { levelOfAwesomeness } from "is-awesome";

// Check if something is awesome
console.log(levelOfAwesomeness(["Jade"])); // Output: 'Awesome'
console.log(levelOfAwesomeness(["John", "Clyde"])); // Output: 'Lame'

Development

This package uses Bun for development. To get started:

  1. Clone the repository
  2. Run bun install
  3. Run bun test to run tests
  4. Run bun run build to build the package

Publishing

Use the Makefile commands for easy deployment:

make test     # Run tests
make build    # Build the package
make publish  # Publish to npm

License

WTFPL