1.7.7 • Published 4 years ago

deus-object v1.7.7

Weekly downloads
438
License
MIT
Repository
-
Last release
4 years ago

deus-object

Some useful object functions

Install

npm install --save deus-object

Functions

object_clone(object);
object_first(object);
object_update(a, b);
object_delta(a, b);
object_has_delta(object);
object_equals(a, b);
isEmpty(object);

Usage

import React, { Component } from 'react'
import { View } from 'react-native'
import FuncObject from 'deus-object'

class Example extends Component {

  let eq1=FuncObject.object_equals({a:"b"},{a:"b"});//true
  let eq2=FuncObject.object_equals({a:"b"},{a:"c"});//false

  let ie1=FuncObject.isEmpty({});  //true
  let ie2=FuncObject.isEmpty([]);  //true
  let ie3=FuncObject.isEmpty(null);//true
  let ie4=FuncObject.isEmpty({test:"a"});//false

  let if1=FuncObject.object_first({a:"a",b:"b",c:"c"});// a:"a"
  let if2=FuncObject.object_first([1,2,3,4]);//1


  render() {
    return <View></View>
  }
}

License

MIT ©

1.7.7

4 years ago

1.7.6

4 years ago

1.7.5

4 years ago

1.7.4

4 years ago

1.7.3

4 years ago

1.7.1

4 years ago

1.7.0

4 years ago

1.6.4

5 years ago

1.6.3

5 years ago

1.6.1

5 years ago

1.5.5

5 years ago

1.6.0

5 years ago

1.5.4

5 years ago

1.5.3

5 years ago

1.5.2

5 years ago

1.5.1

5 years ago

1.4.5

5 years ago

1.4.4

5 years ago

1.4.3

5 years ago

1.4.2

5 years ago

1.5.0

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.7

5 years ago

1.3.6

5 years ago

1.3.5

5 years ago

1.3.4

5 years ago

1.3.3

5 years ago

1.3.2

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.1

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.0

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.14

5 years ago

1.0.13

5 years ago

1.0.12

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago