(projectName)
| 1 | // literally the only reason why this has to be an npm package |
| 2 | var generateNativeModuleString = function(projectName){ |
| 3 | var fixedProjectName = projectName.replace(/-/g, '_'); |
| 4 | |
| 5 | var nativeString = ` |
| 6 | var _${fixedProjectName}$Native_Jsonify = { |
| 7 | stringify: function(thing) { return JSON.stringify(thing); } |
| 8 | };`; |
| 9 | |
| 10 | return nativeString; |
| 11 | }; |
| 12 | |
| 13 | |
| 14 | var importLines = function(moduleNames){ |
nothing calls this directly
no outgoing calls
no test coverage detected