Last active
July 19, 2018 12:51
-
-
Save Bamblehorse/5d3c5ea932e4ff848caacc082bf1b8d6 to your computer and use it in GitHub Desktop.
Testing the useful npm package just-a-space
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const space = require("just-a-space"); | |
console.log(typeof space, space.length, space === " "); // string 1 true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "test", | |
"version": "1.0.0", | |
"main": "index.js", | |
"license": "MIT", | |
"dependencies": { | |
"just-a-space": "^1.0.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment