Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 566 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 566 Bytes

not-hotdog 🌭

Detect if Hotdog or not hotdog! Worse thing than Jin Yang's hotdog-not-hotdog app!!

react native chat

Installation

yarn add not-hotdog

Usage

const { isHotdog, notHotdog } = require('not-hotdog');

console.log(isHotdog('hotdog')); // true
console.log(notHotdog('hotdog')); // false

console.log(isHotdog('pizza')); // false
console.log(notHotdog('pizza')); // true

console.log(isHotdog('🌭')); // true
console.log(isHotdog('🍕')); // false