1.0.1 • Published 4 years ago

sagittarius-difference v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

GitHub Multipack

Getting started.

  • It can be used directly from sagittarius-core package or installed separately via npm runing: npm i sagittarius-difference
const difference = require('sagittarius-difference')
console.log(difference([21, 1997], [21, 2020])) // [1997]
console.log(difference({ a: 21, b: 1997 }, { a: 21, b: 2020 })) // {b: 1997}
console.log(difference('twenty one years', 'twenty one')) // ' years'

Or use via cdn:

<!--index.html-->
<script src="https://cdn.jsdelivr.net/npm/sagittarius-difference@latest/build/index.js"></script>
<script>
  console.log(sagittariusDifference([21, 1997], [21, 2020])) // [1997]
  console.log(sagittariusDifference({ a: 21, b: 1997 }, { a: 21, b: 2020 })) // {b: 1997}
  console.log(sagittariusDifference('twenty one years', 'twenty one')) // ' years'
</script>

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Or you can sponsor via Open Collective

Open Collective

Author

@Gherciu/sagittarius © GHERCIU, Released under the MIT License. Authored and maintained by GHERCIU with help from contributors (list).

If you like this repository star⭐ and watch👀 on GitHub