How to use sigmund - 2 common examples

To help you get started, we’ve selected a few sigmund examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github tinajs / tina / src / adapters / data / sigmund.js View on Github external
isDirty (key) {
    if (!key) {
      return Object.keys(this).some((key) => this.isDirty(key))
    }
    if (!this[key] && !this.__signatures[key]) {
      return false
    }
    return this.__signatures[key] !== sigmund(this[key])
  }
}
github tinajs / tina / src / adapters / data / sigmund.js View on Github external
    this.__signatures = map(this, (key, value) => sigmund(value))
  }

sigmund

Quick and dirty signatures for Objects.

ISC
Latest version published 9 years ago

Package Health Score

67 / 100
Full package analysis

Popular sigmund functions