mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 05:55:11 +00:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
'use strict'
|
|
|
|
let Stringifier = require('./stringifier')
|
|
|
|
function stringify(node, builder) {
|
|
let str = new Stringifier(builder)
|
|
str.stringify(node)
|
|
}
|
|
|
|
module.exports = stringify
|
|
stringify.default = stringify
|