2.2.0 • Published 7 years ago

cf-util-text v2.2.0

Weekly downloads
46
License
BSD-3-Clause
Repository
-
Last release
7 years ago

cf-util-text

CloudFlare Text Util

Installation

$ npm install cf-util-text

Usage

const {getText, setText} = require('cf-util-text');

getText('Some Text Value'); // >> Some Text Value
// console.error(Missing text value for: Some Text Value);

setText('Some Text Value', 'The Real Text Value');
getText('Some Text Value'); // >> The Real Text Value