JSFiddle - React, Tailwind, and code Playground

by diasflack

JavaScript

var template = _.template("<b><%- value %></b>");
console.log(
    template(
        {
            value: '<script>'
        }
    )
);