JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q43811F
  • License Apache-2.0

display Common Forms at text terminals

Package Exports

  • commonform-terminal

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (commonform-terminal) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

var terminal = require('commonform-terminal')
var assert = require('assert')

assert.equal(
  terminal(
    { "content": [
        "This ",
        { use: "Agreement" },
        " (this ",
        { "definition": "Agreement" },
        " is made effective as of the date the last ",
        { "use": "Party" },
        " signs this ",
        { "use": "Agreement" },
        " (the ",
        { "definition": "Effective Date" },
        ") by and between ",
        { "blank": "" },
        ", a ",
        { "blank": "" },
        " (",
        { "definition": "Company" },
        ") and the several purchasers named in ",
        { "reference": "Purchasers" },
        " (",
        { "definition": "Purchasers" },
        ", and together with ",
        { use: "Company"},
        ", each a ",
        { "definition": "Party" },
        ")." ] },
    { /* no blanks */ },
    { /* no options */ }),
  [ "    This \u001b[35mAgreement\u001b[39m (this \"",
    "\u001b[32mAgreement\u001b[39m\" is made effective as of ",
    "the date the last \u001b[35mParty\u001b[39m signs this ",
    "\u001b[35mAgreement\u001b[39m (the \"\u001b[32mEffective ",
    "Date\u001b[39m\") by and between \u001b[31m\u001b[4m[•]",
    "\u001b[24m\u001b[39m, a \u001b[31m\u001b[4m[•]",
    "\u001b[24m\u001b[39m (\"\u001b[32mCompany",
    "\u001b[39m\") and the several purchasers named in \u001b[33m",
    "Purchasers\u001b[39m (\"\u001b[32mPurchasers\u001b[39m\", and ",
    "together with \u001b[35mCompany\u001b[39m, each a \"\u001b[32m",
    "Party\u001b[39m\")." ].join(''))