1.0.0 • Published 3 months ago

@sirmews/is-awesome v1.0.0

Weekly downloads
-
License
Unlicense
Repository
github
Last release
3 months ago

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

1.0.0

3 months ago