Skip to content

Commit 5ee91fb

Browse files
authored
Merge pull request #40 from hckrnews/feature/trojs
Move to TroJS
2 parents 18faae1 + 46bd66d commit 5ee91fb

7 files changed

+59
-65
lines changed

.github/FUNDING.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22

33
github: [w3nl]
44
patreon: w3news
5-
buymeacoffee: https://www.buymeacoffee.com/hckrnews

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.10.0
1+
20.12.2

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Contributing
22

3-
HckrNews Arrays is Free and Open Source Software. Issues and pull requests are more than welcome!
3+
TroJS Arrays is Free and Open Source Software. Issues and pull requests are more than welcome!

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Hckr.News
3+
Copyright (c) 2024 TroJS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+9-18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Array Helpers
22

3-
[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-stats] [![Build Status][travis-image]][travis-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Codecov Status][codecov-image]][codecov-url] [![Scrutinizer Code Quality][scrutinizer-image]][scrutinizer-url]
3+
[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-stats]
44

55
Array helpers, so you can get very fast your data from the array.
66

@@ -9,15 +9,14 @@ Array helpers, so you can get very fast your data from the array.
99
If it has saved you development time, please consider [sponsoring the project](https://github.com/sponsors/w3nl)
1010
with GitHub sponsors!
1111

12-
But me a coffee/book: https://www.buymeacoffee.com/hckrnews
1312
Or on patreon: https://patreon.com/w3news
1413

1514
## Example usage
1615

1716
here an example array.
1817

1918
```javascript
20-
import { Arr } from '@hckrnews/arrays';
19+
import { Arr } from '@trojs/arrays';
2120

2221
var exampleArray = new Arr([
2322
{
@@ -544,32 +543,24 @@ npm run lint
544543

545544
## node.js
546545

547-
To include @hckrnews/arrays in Node, first install with npm.
546+
To include @trojs/arrays in Node, first install with npm.
548547

549548
```
550-
npm install @hckrnews/arrays
549+
npm install @trojs/arrays
551550
```
552551

553552
Use the package in your node files.
554553

555554
```javascript
556-
import { Arr } from '@hckrnews/arrays';
555+
import { Arr } from '@trojs/arrays';
557556
```
558557

559558
Than you can use all array helpers from this package in your node files.
560559

561560
An example is included `example/node.js`
562561

563562

564-
[downloads-image]: https://img.shields.io/npm/dm/@hckrnews/arrays.svg
565-
[npm-url]: https://www.npmjs.com/package/@hckrnews/arrays
566-
[npm-image]: https://img.shields.io/npm/v/@hckrnews/arrays.svg
567-
[npm-stats]: https://npm-stat.com/charts.html?package=@hckrnews/arrays
568-
[travis-url]: https://www.travis-ci.com/github/hckrnews/arrays
569-
[travis-image]: https://www.travis-ci.com/hckrnews/arrays.svg?branch=main
570-
[coveralls-url]: https://coveralls.io/r/hckrnews/arrays
571-
[coveralls-image]: https://img.shields.io/coveralls/hckrnews/arrays/master.svg
572-
[codecov-url]: https://app.codecov.io/gh/hckrnews/arrays
573-
[codecov-image]: https://img.shields.io/codecov/c/github/hckrnews/arrays.svg
574-
[scrutinizer-url]: https://scrutinizer-ci.com/g/hckrnews/arrays/?branch=master
575-
[scrutinizer-image]: https://scrutinizer-ci.com/g/hckrnews/arrays/badges/quality-score.png?b=main
563+
[downloads-image]: https://img.shields.io/npm/dm/@trojs/arrays.svg
564+
[npm-url]: https://www.npmjs.com/package/@trojs/arrays
565+
[npm-image]: https://img.shields.io/npm/v/@trojs/arrays.svg
566+
[npm-stats]: https://npm-stat.com/charts.html?package=@trojs/arrays

package-lock.json

+44-40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@hckrnews/arrays",
3-
"version": "4.0.4",
2+
"name": "@trojs/arrays",
3+
"version": "5.0.0",
44
"description": "Usefull array helpers.",
55
"files": [
66
"src/helpers.js",
@@ -35,7 +35,7 @@
3535
],
3636
"author": {
3737
"name": "Pieter Wigboldus",
38-
"url": "https://hckr.news/"
38+
"url": "https://trojs.org/"
3939
},
4040
"bugs": {
4141
"url": "https://github.com/hckrnews/arrays/issues"

0 commit comments

Comments
 (0)