linny-r 1.7.0 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/console.js +150 -89
- package/package.json +1 -1
- package/server.js +1 -1
- package/static/scripts/linny-r-ctrl.js +16 -13
- package/static/scripts/linny-r-gui-paper.js +43 -38
- package/static/scripts/linny-r-gui-receiver.js +5 -5
- package/static/scripts/linny-r-model.js +188 -155
- package/static/scripts/linny-r-utils.js +20 -3
- package/static/scripts/linny-r-vm.js +581 -327
@@ -1076,6 +1076,7 @@ if(NODE) module.exports = {
|
|
1076
1076
|
msecToTime: msecToTime,
|
1077
1077
|
compactClockTime: compactClockTime,
|
1078
1078
|
uniformDecimals: uniformDecimals,
|
1079
|
+
capitalized: capitalized,
|
1079
1080
|
ellipsedText: ellipsedText,
|
1080
1081
|
earlierVersion: earlierVersion,
|
1081
1082
|
differences: differences,
|
@@ -1083,12 +1084,23 @@ if(NODE) module.exports = {
|
|
1083
1084
|
ciCompare: ciCompare,
|
1084
1085
|
endsWithDigits: endsWithDigits,
|
1085
1086
|
indexOfMatchingBracket: indexOfMatchingBracket,
|
1087
|
+
monoSpaced: monoSpaced,
|
1088
|
+
monoSpacedVariables: monoSpacedVariables,
|
1086
1089
|
patternList: patternList,
|
1087
1090
|
patternMatch: patternMatch,
|
1088
|
-
|
1089
|
-
stringToFloatArray: stringToFloatArray,
|
1091
|
+
matchingWildcardNumber: matchingWildcardNumber,
|
1090
1092
|
escapeRegex: escapeRegex,
|
1093
|
+
wildcardMatchRegex: wildcardMatchRegex,
|
1094
|
+
wildcardFormat: wildcardFormat,
|
1095
|
+
matchingNumber: matchingNumber,
|
1096
|
+
matchingNumberInList: matchingNumberInList,
|
1097
|
+
compareWithTailNumbers: compareWithTailNumbers,
|
1098
|
+
compareSelectors: compareSelectors,
|
1099
|
+
compareCombinations: compareCombinations,
|
1091
1100
|
addDistinct: addDistinct,
|
1101
|
+
mergeDistinct: mergeDistinct,
|
1102
|
+
iteratorSet: iteratorSet,
|
1103
|
+
integerSet: integerSet,
|
1092
1104
|
setString: setString,
|
1093
1105
|
tupelString: tupelString,
|
1094
1106
|
tupelSetString: tupelSetString,
|
@@ -1097,6 +1109,7 @@ if(NODE) module.exports = {
|
|
1097
1109
|
complement: complement,
|
1098
1110
|
xmlEncoded: xmlEncoded,
|
1099
1111
|
xmlDecoded: xmlDecoded,
|
1112
|
+
customizeXML: customizeXML,
|
1100
1113
|
cleanXML: cleanXML,
|
1101
1114
|
parseXML: parseXML,
|
1102
1115
|
childNodeByTag: childNodeByTag,
|
@@ -1107,12 +1120,16 @@ if(NODE) module.exports = {
|
|
1107
1120
|
parseLetterCode: parseLetterCode,
|
1108
1121
|
randomID: randomID,
|
1109
1122
|
escapedSingleQuotes: escapedSingleQuotes,
|
1123
|
+
safeDoubleQuotes: safeDoubleQuotes,
|
1110
1124
|
nameToLines: nameToLines,
|
1125
|
+
hexToFloat: hexToFloat,
|
1126
|
+
stringToFloatArray: stringToFloatArray,
|
1111
1127
|
hexToBytes: hexToBytes,
|
1128
|
+
bytesToHex: bytesToHex,
|
1112
1129
|
arrayBufferToBase64: arrayBufferToBase64,
|
1113
1130
|
base64ToArrayBuffer: base64ToArrayBuffer,
|
1114
1131
|
encryptionKey: encryptionKey,
|
1115
1132
|
encryptMessage: encryptMessage,
|
1116
1133
|
decryptMessage: decryptMessage,
|
1117
|
-
tryToDecrypt: tryToDecrypt
|
1134
|
+
tryToDecrypt: tryToDecrypt
|
1118
1135
|
}
|