@front-app-react/constants
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

Js Constants

package constant bindings for using applications

Demo

demo for using demo-front-app-react

Installing

npm i @front-app-react/constants

Packages

List of packages used:

  • stringArgsFunc - Places values with variables in a text string
  • objectByString - Get the value object with the name point

stringArgsFunc

Description

Places values with variables in a text string in the text string :

  • Any value before return is known as a variable
  • Any value after the last comma before return is known as JavaScript code

Usage

dev
const str = "count,return 'The number of : ' + count";
const value = stringArgsFunc(str,["41"]);
result
const value = "The number of : 41";

Arguments

arg1 type string , text
arg1 type string array

Value

The output value is string

objectByString

Description

Get the value object with the name point

Usage

dev
const object = {
    signIn : {
        username : "user username",
        password : "user password",
    }
};
const value = objectByString(object,"signIn.username");
result
const value = "user username";

Arguments

arg1 type object
arg2 type string, endpoint name obj with dot

Value

The output value is anything

Package Sidebar

Install

npm i @front-app-react/constants

Weekly Downloads

2

Version

1.1.2

License

none

Unpacked Size

10 kB

Total Files

18

Last publish

Collaborators

  • mahdi_khanbeigi