source: imaps-frontend/node_modules/css-in-js-utils/lib/hyphenateProperty.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 450 bytes
RevLine 
[d565449]1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports["default"] = hyphenateProperty;
7
8var _hyphenateStyleName = require("hyphenate-style-name");
9
10var _hyphenateStyleName2 = _interopRequireDefault(_hyphenateStyleName);
11
12function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
13
14function hyphenateProperty(property) {
15 return (0, _hyphenateStyleName2["default"])(property);
16}
Note: See TracBrowser for help on using the repository browser.