UNPKG

react-liquid-theme

Version:

A tool for generating shopify .liquid theme files from React components.

9 lines (6 loc) 255 B
import { DECODE_START_SIGN, DECODE_END_SIGN } from './constants.js'; // not used in component, exposed for external usage function makeDecodable(expression) { return `${DECODE_START_SIGN}${expression}${DECODE_END_SIGN}`; } export { makeDecodable };