1.0.0 • Published 5 years ago

myopic v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

myopic 🤓

A function for crafting thoughts that don't age well

usage

myopic("The render prop pattern", "cloneElement")
// => "The render prop pattern replaces cloneElement. I don't see any reason to use cloneElement anymore."

myopic("The new Context API", "Redux")
// => "The new Context API replaces Redux. I don't see any reason to use Redux anymore."

Here's the code that powers it:

function myopic(thingIveJustLearned, thingIveUsed) {
  return `${thingIveJustLearned} replaces ${thingIveUsed}. I don't see any reason to use ${thingIveUsed} anymore.`;
}

installation

Node

npm i myopic

Module

import myopic from "myopic";

CommonJS

const myopic = require("myopic");

Browser

<script src="https://unpkg.com/myopic"></script>