Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
stylelint
/
lib
/
utils
/
Filename :
isStandardSyntaxFunction.js
back
Copy
/* @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; };