├── README.md ├── index.js └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # is-wds-npm-package 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | function isWds(string) { 2 | return string === "WDS" 3 | } 4 | 5 | module.exports = isWds 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@web-dev-simplified/is-wds", 3 | "version": "1.0.0", 4 | "description": "Is the string WDS?", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/WebDevSimplified/is-wds-npm-package.git" 12 | }, 13 | "keywords": [ 14 | "WDS" 15 | ], 16 | "author": "Web Dev Simplified", 17 | "license": "ISC", 18 | "bugs": { 19 | "url": "https://github.com/WebDevSimplified/is-wds-npm-package/issues" 20 | }, 21 | "homepage": "https://github.com/WebDevSimplified/is-wds-npm-package#readme" 22 | } 23 | --------------------------------------------------------------------------------