diff --git a/README.md b/README.md index fc8e3fb..927e6a7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ # fops Simulate the best creature ever: the fops. + +```ts +import fops from "@fops/fops"; + +// Cuddle with the fops +fops.cuddle() +``` diff --git a/index.ts b/index.ts index 69b05b9..30893a7 100644 --- a/index.ts +++ b/index.ts @@ -2,19 +2,20 @@ export class Fops { /** Boop the fops */ boop (): string { - return "*blep*" + return "*blep*"; } /** Cuddle the fops */ cuddle (): string { - return ">///<" + return ">///<"; } /** Pat the fops */ pat (): string { - return "^w^" + return "^w^"; } } +/** A ready to play with Fops */ const defaultInstance: Fops = new Fops(); export default defaultInstance; diff --git a/jsr.json b/jsr.json index b2f3124..f9f15f2 100644 --- a/jsr.json +++ b/jsr.json @@ -1,5 +1,5 @@ { "name": "@fops/fops", - "version": "0.0.2", + "version": "0.0.3", "exports": "./index.ts" }