Skip to content
This repository was archived by the owner on Aug 26, 2021. It is now read-only.

Commit a2ff439

Browse files
author
Adam A. Zerella
committed
Added boilerplate has react/jquery functions to helper.js
1 parent 226a048 commit a2ff439

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

scripts/generate-readme/src/helper.js

+20
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,24 @@ const GetFolders = async ( folderLocation ) => {
2626
}
2727

2828

29+
/**
30+
* Return true if a component folder location has a `jquery.js` file.
31+
*
32+
* @param {string} folderLocation - Component folder location.
33+
*/
34+
const HasJQuery = async ( folderLocation ) => {
35+
return false;
36+
}
37+
38+
39+
/**
40+
* Return true if a component folder location has a `react.js` file.
41+
*
42+
* @param {string} folderLocation - Component folder location.
43+
*/
44+
const HasReact = async ( folderLocation ) => {
45+
return false;
46+
}
47+
48+
2949
module.exports.GetFolders = GetFolders;

0 commit comments

Comments
 (0)