/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/postgres-bytea/encoder.js
17 строк
285 B
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
'use strict' const { Transform } = require('stream') class ByteaEncoder extends Transform { constructor () { super() this.push('\\\\x') } _transform (chunk, encoding, callback) { this.push(chunk.toString('hex')) callback() } } module.exports = ByteaEncoder