'use strict'; const memory = require('../memory.js'); module.exports = async (name) => { const shape = memory.get(name); if (!shape) return 'Shape is not found'; const points = []; for (const key in shape) { const point = shape[key]; points.push(point); } const svg = []; svg.push(''); svg.push(''); return svg.join(''); };