(argumentTypesObject)
| 935 | } |
| 936 | |
| 937 | function splitArgumentTypes(argumentTypesObject) { |
| 938 | const argumentNames = Object.keys(argumentTypesObject); |
| 939 | const argumentTypes = []; |
| 940 | for (let i = 0; i < argumentNames.length; i++) { |
| 941 | const argumentName = argumentNames[i]; |
| 942 | argumentTypes.push(argumentTypesObject[argumentName]); |
| 943 | } |
| 944 | return { argumentTypes, argumentNames }; |
| 945 | } |
| 946 | |
| 947 | module.exports = { |
| 948 | Kernel |
no outgoing calls
no test coverage detected
searching dependent graphs…