Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

isStandardSyntaxFunction.js 308B

12345678910111213141516
  1. 'use strict';
  2. /**
  3. * Check whether a function is standard
  4. *
  5. * @param {import('postcss-value-parser').Node} node
  6. * @returns {boolean}
  7. */
  8. module.exports = function (node) {
  9. // Function nodes without names are things in parentheses like Sass lists
  10. if (!node.value) {
  11. return false;
  12. }
  13. return true;
  14. };