/* @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 listsif (!node.value) {
returnfalse;
}
returntrue;
};