UNPKG

stylelint-taro-rn

Version:

A collection of React Native specific rules for stylelint

13 lines (11 loc) 293 B
/** * Check whether a node is an :export block */ function isExportBlock(node /*: Object */) { if (node.type === 'rule' && node.selector && node.selector === ':export') { return true; } return false; } export { isExportBlock }; //# sourceMappingURL=isExportBlock.js.map