myopic

1.0.0 • Public • Published

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>

Readme

Keywords

none

Package Sidebar

Install

npm i myopic

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

4.97 kB

Total Files

11

Last publish

Collaborators

  • chantastic