A package implementing the LinkedList data structure with essential methods and operations.
npm install namastey-linked-listappend(value): Adds a new node to the end of the list.
insertAt(value, position): Inserts a new node at a specific position.
remove(value): Removes a node by its value.
find(value): Finds a node by its value.
printList(): Prints the list.
getSize(): Gets the size of the list.