mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-12 22:52:21 -06:00
15 lines
269 B
JavaScript
15 lines
269 B
JavaScript
/* @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
|
|
}
|