node-print: upgrade to 2

This commit is contained in:
ptrcnull 2022-08-27 13:51:10 +02:00
parent aa4b5eadb7
commit 5f9dd684d6
2 changed files with 10 additions and 3 deletions

View file

@ -1,7 +1,7 @@
# Contributor: Patrycja Rosa <alpine@ptrcnull.me>
# Maintainer: Patrycja Rosa <alpine@ptrcnull.me>
pkgname=node-print
pkgver=1
pkgver=2
pkgrel=0
pkgdesc="another terrible javascript engine wrapper"
url="https://git.ddd.rip/ptrcnull/ptrcports"
@ -12,8 +12,15 @@ source="np index.js"
builddir="$srcdir"
check() {
local out
out="$(echo test | node -r . -p "stdin().substring(2).replace('t', 'rc').replace('s', 'pt')")"
[ "$out" == "ptrc" ]
out="$(echo '{"test":"property"}' | node -r . -p "stdin().test")"
[ "$out" == "property" ]
out="$(echo '["item"]' | node -r . -p "stdin()[0]")"
[ "$out" == "item" ]
}
package() {
@ -23,5 +30,5 @@ package() {
sha512sums="
b3dfdeb49637be33d2e2718c5abcf35a87dd55023918c99341273c3b38bd6685189d1f786451a742c47c5f3bc3b58555decb58e2a3a018c9b9ee92043f8fac03 np
979cf7427821309c3f0a5e00d2ebac44d88582f949ddb71959a81a5ca8f4aca15f54a376c8217a94f7ab5aca229dddc59bcebb657ee0c319a5ace330750a8ddd index.js
b02f090ed4366db10373ca468eedadf1b0ef6543f61fae4e40d2b38a1e1abef3fda68831577a5608b20ca48184cac679609d8389da4830ea0dd98971dcdebed6 index.js
"

View file

@ -1,7 +1,7 @@
global.stdin = () => {
const fs = require('fs')
const out = fs.readFileSync(0).toString()
if (out.at(0) === '{') {
if (out.at(0) === '{' || out.at(0) === '[') {
return JSON.parse(out)
} else {
return out