Skip to content

Commit 2dab8ce

Browse files
committed
nodejs/axml2xml: it seems that is a bug in axml2xml actually
Signed-off-by: lucasew <[email protected]>
1 parent a48a28a commit 2dab8ce

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

nodejs/axml2xml/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

nodejs/axml2xml/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ const bufferProxy = new Proxy(originalBuffer, {
2828
if (typeof item === 'function') {
2929
return function (...args) {
3030
const npmItem = Reflect.get(npmBuffer, propKey, receiver)
31-
const npmResult = npmItem.apply(npmBuffer, args)
31+
// const npmResult = npmItem.apply(npmBuffer, args)
3232
const result = item.apply(target, args)
33-
console.log(propKey, result, npmResult, args)
33+
// console.log(propKey, result, npmResult, args)
3434
return result
3535
}
3636
} else {

0 commit comments

Comments
 (0)