npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@iceylan/ascii-byte-stream

v0.0.5

Published

Makes logical operations on sets of strings using a cursor technique by treating them as streams.

Downloads

7

Readme

ASCII Byte Stream

This is a small library that allows us to make logical operations on sets of strings using a cursor technique by treating them as streams.

Installation

npm install @iceylan/ascii-byte-stream

Usage

import ASCIIByteStream from "@iceylan/ascii-byte-stream";

const stream = new ASCIIByteStream( "Hello, World!" );

stream.current; // "H"
stream.cursor; // 0

Properties

ASCIIByteStream has the following properties:

cursor

The cursor is a writable and readable integer property that indicates the current character that the stream is pointing at. It starts at 0 and goes to the length of the stream - 1. Zeroth character is the first character in the stream.

stream.cursor = 4;
stream.current; // "o"

raw

We can always access original string. This library does not modify the original data.

stream.raw; // "Hello, World!"

current

If we want to access the current character that the cursor is pointing at, we can use the current property.

It is a read only property. If the cursor has reached at the end of the stream, this will be undefined.

stream.current; // "H"

stream.cursor = Infinity;
stream.current; // undefined

next

We can move the cursor one character forward with the next property. It is a read only property with has a side effect on the cursor. If the cursor has reached at the end of the stream, this will be undefined. Otherwise it will return the next character in the stream.

stream.current; // "H"
stream.next; // "e"
stream.current; // "e"

prev

We can move the cursor one character backward with the prev property. It is also a read only property. If the cursor has reached at the beginning of the stream, this will return undefined. Otherwise it will return the previous character in the stream.

stream.cursor = 4;
stream.current; // "o"

stream.prev; // "l"
stream.current; // "l"

length

The length property indicates the length of the stream. It is a read only property and an alias for raw.length.

stream.length; // 13
stream.raw.length; // 13

Methods

ASCIIByteStream has the following methods:

matches

We can match from the current character with the given target. It returns true if it matches, and false if it doesn't.

stream.current; // "H"

stream.matches( "H" ); // true
stream.matches( "Hell" ); // true
stream.matches( "o" ); // false

It does not move the cursor.

before

It matches if the given target is found before the current character. It returns true if it matches, and false if it doesn't.

stream.cursor = 4; // "o"
stream.before( "Hell" ); // true

It also does not move the cursor.

after

It matches if the given target is found after the current character. It returns true if it matches, and false if it doesn't. This method is very similar to matches method except that it doesn't use current character, starts from the next character.

stream.cursor = 2; // "e"
stream.after( "llo" ); // true

It also does not move the cursor.

distanceTo

It returns there is how many characters between the current character and the given target. If the target is not found, it returns Infinity.

// Hello World!
stream.cursor = 0; // "H"
stream.distanceTo( "W" ); // 5

closest

It takes an array of targets and calculates their distances to the current character. It returns an array of arrays, where each inner array contains the target and its distance to the current position in the stream and the returned root array will be sorted in ascending before returned.

stream.cursor = 0; // "H"
stream.closest([ "!", "W" ]);

The returned array is like:

[
	[ "W", 5 ],
	[ "!", 10 ]
]

startTransaction

It starts a transaction. Returns a function that should be called after the transaction is done. It can be used to rollback the cursor.

stream.current;	// "H"
stream.next; // "e"

const rollback = stream.startTransaction();

stream.next; // "l"
stream.next; // "l"
stream.next; // "o"
stream.cursor; // 4

rollback();

stream.current; // "H"
stream.cursor; // 0

getUntil

It returns a substring from the current cursor position to the first occurrence of the given target. If the target is not found, it returns undefined.

stream.current; // "H"
stream.getUntil( " " ); // "Hello"

stream.current; // " "
stream.cursor; // 5

stream.getUntil( "x" ); // undefined

It will move the cursor.

slice

It returns a substring as given length from the current cursor position. If the given length is negative, it will throws a RangeError. If length is Infinity, it will return all the remaining characters in the stream from the current cursor position. It will move the cursor.

stream.cursor = 1;
stream.current; // "e"

stream.slice( 3 ); // "ell"

stream.current; // "o"
stream.cursor; // 4

stream.slice( -1 ); // RangeError
stream.slice( Infinity ); // "o World!"

move

It moves the cursor ahead from the current position by the given length. If the given length is negative, it will move the cursor backwards. It returns the stream's itself.

// Hello World!
stream.current; // "e"
stream.cursor; // 1

stream.move( 6 );

stream.current; // "o"
stream.cursor; // 7

moveTo

It teleports the cursor to the given position. It returns the stream's itself. Its and alias for stream.cursor = position syntax.

stream.current; // "e"
stream.cursor; // 1

stream.moveTo( 6 );

stream.current; // "W"
stream.cursor; // 6

stream.moveTo( 0 );

stream.current; // "H"
stream.cursor; // 0

jumpTo

It finds the index of the target in the stream starting from the current cursor position and move the cursor to that position. It returns the cursor position.

stream.cursor = 1;
stream.current; // "e"

stream.jumpTo( "W" ); // 6

stream.current; // "W"
stream.cursor; // 6

consume

It eats the given target character set(s) starting from the position of the cursor in the stream until it encounters something else.

The consumed data will be returned.

//   v  <-- cursor is here
"Hellooo World!".consume( "o" ); // ooo
//      ^  <-- cursor is here now

It supports multibyte character targets.

//     v  <-- cursor is here
"Hello 121212 World!".consume( "12" ); // 121212 
//           ^  <-- cursor is here now

It supports more than one target. With this, it will consume if the characters at the reached position matches with any of the given targets.

//    v  <-- cursor is here
"Hello\s\t\t\s\sWorld!".consume([ "\s", "\t" ]); // \s\t\t\s\s
//              ^  <-- cursor is here now