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

@reignmodule/mechanic-text

v1.2.1

Published

This library help to format the "mechanic text".

Downloads

2

Readme

Mechanic

This library help to format the "mechanic text".

Mechanics text Supported

  • 1: Ex. 20% Descuento
  • 4: Ex. $10 Antes: $100
  • 13: Ex. Por una compra sobre $100
  • 11: Ex. $10 Por una compra sobre $100
  • 2: Ex. 2x3
  • 7: Ex. 4 x $890

API Mechanics

The Mechanic object format the "mechanical text".

Example:

// Format mechanics 1
let mechanics = new Mechanics();

expect(mechanics.format("1", "40")).toBe("40% Descuento");

// Format mechanics 4
let mechanics = new Mechanics();

expect(mechanics.format("4", "10*100")).toBe("$10 Antes: $100");

Constructor

Mechanics(locales, options)

Create a new Mechanics object.

Syntax

new Mechanics(undefined, { currencyFormat: { currency: "CLP" } })

Parameters

  • locales: A string with a BCP 47 language tag, or an array of such strings.
  • options: An object with some or all the following properties:
    • style: The formatting style to use. the default is default.
      • "default": Generic formatting.
      • "mobile-alvi": for the app mobile formatting.
    • currencyFormat: An object with the NumberFormat options. See more https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat.

Mechanics.prototype.format(mechanicsId, mechanicsText)

The Mechanics.prototype.format() method format the mechanic text.

Parameters

  • mechanicsId: Type of mechanic to format. Posible values "1", "4", "13", "11", "2", "7".
  • mechanicsText: Mechanic text to decompose. The format depends on the mechanic id. Ex. with the mechanic id 4 the mechanic text is 10*100.

Syntax

format("4", "10*100")

Return value

A string of the mechanic formatted.

Example

const mechanicValue = new Mechanics().format("4", "10*100")

expect(mechanicValue).toBe("$10 Antes: $100")

Mechanics.prototype.formatToParts(mechanicsId, mechanicsText)

The Mechanics.prototype.formatToParts() method format the mechanic text and return it in parts.

Parameters

  • mechanicsId: Type of mechanic to format. Posible values "1", "4", "13", "11", "2", "7".
  • mechanicsText: Mechanic text to decompose. The format depends on the mechanic id. Ex. with the mechanic id 4 the mechanic text is 10*100.

Syntax

formatToParts("4", "10*100")

Return value

An Array of objects containing the formatted in parts.

Example

[
    { "type": "offer", "value": "$10" },
    { "type": "literal", "value": " Antes: " },
    { "type": "ref", "value": "$100" },
]

Possible types are the following:

  • literal: The string used for separating the values.
  • discount:
  • discountAmount:
  • m:
  • minimumAmount:
  • nProducts:
  • offer:
  • ref: