mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:17:30 -04: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
|
|
}
|