@rndm/render-plugin-lodash

4.17.21 • Public • Published

RNDM Render Plugin: Lodash

About

This plugin provides the core functionality for the RNDM Render package.

Please Note: This plugin is also contained within the Core Preset package, which also includes other functionality such as React Native components and lodash methods. If you are looking to get started, we highly recommend the RNDM Client which includes the standard RNDM Render and the core plugin.

Installation

If you have not already done so, then please ensure you have installed the RNDM Render and RNDM Preset: Core package.

From NPM

npm install --save @rndm/render-plugin-lodash

Post Installation

In order to allow this plugin to work, it must first be included in your project. You can do this inside your main index file:

import '@rndm/render-plugin-core';
import '@rndm/render-plugin-lodash';

Usage

The Lodash Plugin transforms the lodash methods into serialisable functions.

Example

{
    type: '_.get',
    isFunc: true,
    args: [
        'a.b.c',
        {
            a: {
                b: {
                    c: 'test',
                },
            },
        },
    ],
};

// This will log out 'test'

For the full suite of available lodash methods, please checkout their awesome and powerful utility library.

(Note: This library is versioned alongside its corresponding lodash version.)

Check out the Playground page to see how these features work.

Readme

Keywords

none

Package Sidebar

Install

npm i @rndm/render-plugin-lodash

Weekly Downloads

0

Version

4.17.21

License

Apache-2.0

Unpacked Size

2.58 kB

Total Files

3

Last publish

Collaborators

  • paul.j.napier