blob: f1e24f99e1c3133ef31f636aab9dbadeabe634ec [file] [log] [blame]
/* @flow */
"use strict";
/**
* Check whether a function is standard
*/
module.exports = function(node /*: Object*/) /*: boolean*/ {
// Function nodes without names are things in parentheses like Sass lists
if (!node.value) {
return false;
}
return true;
};