node.js - nodejs convert string like php pack function -


i trying convert string ascii

in php:

>>> pack('h*', '123') => "\x120" 

how same thing in nodejs?

i trying use https://github.com/peze/node-pack package pack result following :

> pack.pack('h*', '123')   outputpos=2 <buffer 12 30> 


Comments

Popular posts from this blog

javascript - Knockout pushing observable and computed data to an observable array -

'hasOwnProperty' in javascript -

Trouble making a JSON string -