{"_id":"unitless-css-property","_rev":"273609","name":"unitless-css-property","description":"Helper to check for unitless CSS property names","dist-tags":{"latest":"1.0.2"},"maintainers":[{"name":"rofrischmann","email":"robin@rofrischmann.de"}],"time":{"modified":"2021-06-03T17:51:13.000Z","created":"2016-05-26T17:06:56.152Z","1.0.2":"2016-05-29T14:21:39.193Z","1.0.1":"2016-05-26T17:20:12.777Z","1.0.0":"2016-05-26T17:06:56.152Z"},"users":{},"author":{"name":"Robin Frischmann"},"repository":{"type":"git","url":"https://github.com/rofrischmann/unitless-css-property/"},"versions":{"1.0.2":{"name":"unitless-css-property","version":"1.0.2","description":"Helper to check for unitless CSS property names","main":"modules/index.js","scripts":{"test":"istanbul cover ./node_modules/.bin/_mocha"},"repository":{"type":"git","url":"https://github.com/rofrischmann/unitless-css-property/"},"author":{"name":"Robin Frischmann"},"license":"MIT","dependencies":{"hyphenate-style-name":"^1.0.1"},"devDependencies":{"chai":"^3.5.0","codeclimate-test-reporter":"^0.3.1","istanbul":"^1.0.0-alpha.2","mocha":"^2.5.3"},"gitHead":"d70509ddf41b48995a2ef5adef210873aed0648c","_id":"unitless-css-property@1.0.2","_shasum":"dd4b666172fba241fcf50b6b31aee126700b170a","_from":".","_npmVersion":"3.7.2","_nodeVersion":"5.1.0","_npmUser":{"name":"rofrischmann","email":"robin@rofrischmann.de"},"dist":{"shasum":"dd4b666172fba241fcf50b6b31aee126700b170a","size":2915,"noattachment":false,"key":"/unitless-css-property/-/unitless-css-property-1.0.2.tgz","tarball":"http://registry.cnpm.dingdandao.com/unitless-css-property/download/unitless-css-property-1.0.2.tgz"},"maintainers":[{"name":"rofrischmann","email":"robin@rofrischmann.de"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/unitless-css-property-1.0.2.tgz_1464531696978_0.34937748964875937"},"directories":{},"publish_time":1464531699193,"_cnpm_publish_time":1464531699193,"_hasShrinkwrap":false},"1.0.1":{"name":"unitless-css-property","version":"1.0.1","description":"Helper to check for unitless CSS property names","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/rofrischmann/unitless-css-property/"},"author":{"name":"Robin Frischmann"},"license":"MIT","gitHead":"0938abd8e3c6c91138da30b933cdc19530253da9","_id":"unitless-css-property@1.0.1","_shasum":"4c54b8d0a5a26f9bdae27008ef95adc1cb81962c","_from":".","_npmVersion":"3.7.2","_nodeVersion":"5.1.0","_npmUser":{"name":"rofrischmann","email":"robin@rofrischmann.de"},"dist":{"shasum":"4c54b8d0a5a26f9bdae27008ef95adc1cb81962c","size":1659,"noattachment":false,"key":"/unitless-css-property/-/unitless-css-property-1.0.1.tgz","tarball":"http://registry.cnpm.dingdandao.com/unitless-css-property/download/unitless-css-property-1.0.1.tgz"},"maintainers":[{"name":"rofrischmann","email":"robin@rofrischmann.de"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/unitless-css-property-1.0.1.tgz_1464283211033_0.5114180690143257"},"directories":{},"publish_time":1464283212777,"_cnpm_publish_time":1464283212777,"_hasShrinkwrap":false},"1.0.0":{"name":"unitless-css-property","version":"1.0.0","description":"Helper to check for unitless CSS property names","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/rofrischmann/unitless-css-property/"},"author":{"name":"Robin Frischmann"},"license":"MIT","gitHead":"0938abd8e3c6c91138da30b933cdc19530253da9","_id":"unitless-css-property@1.0.0","_shasum":"fb300ce85967fefe2f238a4d054f2b54a278ef51","_from":".","_npmVersion":"3.7.2","_nodeVersion":"5.1.0","_npmUser":{"name":"rofrischmann","email":"robin@rofrischmann.de"},"dist":{"shasum":"fb300ce85967fefe2f238a4d054f2b54a278ef51","size":1657,"noattachment":false,"key":"/unitless-css-property/-/unitless-css-property-1.0.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/unitless-css-property/download/unitless-css-property-1.0.0.tgz"},"maintainers":[{"name":"rofrischmann","email":"robin@rofrischmann.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/unitless-css-property-1.0.0.tgz_1464282413912_0.9746053784620017"},"directories":{},"publish_time":1464282416152,"_cnpm_publish_time":1464282416152,"_hasShrinkwrap":false}},"readme":"# Unitless CSS Property\n\n<img alt=\"TravisCI\" src=\"https://travis-ci.org/rofrischmann/unitless-css-property.svg?branch=master\">\n<a href=\"https://codeclimate.com/github/rofrischmann/unitless-css-property/coverage\"><img alt=\"Test Coverage\" src=\"https://codeclimate.com/github/rofrischmann/unitless-css-property/badges/coverage.svg\"></a>\n<a href=\"https://codeclimate.com/github/rofrischmann/unitless-css-property\"><img alt=\"Code Climate\" src=\"https://codeclimate.com/github/rofrischmann/unitless-css-property/badges/gpa.svg\"></a>\n\nProvides a simple helper to check for unitless CSS property names. It also checks for prefixed and hyphenated property names.\n\n## Installation\n```sh\nnpm i --save unitless-css-property\n```\n## Usage\n\n```javascript\nimport isUnitlessCSSProperty from 'unitless-css-property'\n\n// basic property\nisUnitlessCSSProperty('lineHeight') // => true\n// prefixed property\nisUnitlessCSSProperty('WebkitFlex') // => true\n// hypenated property\nisUnitlessCSSProperty('line-height') // => true\n// prefixed and hypenated property\nisUnitlessCSSProperty('-webkit-flex') // => true\n\n\nisUnitlessCSSProperty('width') // => false\n```\n\n## License\nLicensed under the [MIT License](http://opensource.org/licenses/MIT).<br>\nCreated with ♥ by [@rofrischmann](http://rofrischmann.de).\n","_attachments":{},"license":"MIT"}