Skip to content

ungap/new

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@ungap/new

This is a resolution to this TC39 proposal:

  • if they implement the proposal, this is exactly it
  • if they won't implement the proposal, this is not causing any present/past/future conflict or issue with already working code in the wild (i.e. static new classes methods won't be affected and new object fields won't be affected neither)

Alternative

If you don't like the idea to simplify everyone life with this module, feel free to try this workaround that doesn't change the Function.prototype at all.

Use Case

Specially in these days where many foreign programming languages are landing in the Web landscape via WASM, it is crucial to provide an easy way to disambiguate users intents when it comes to new Class(...args), a syntax that might not be available in foreign programming languages.

This extremely tiny and TC39 suggested polyfill allows code interpreted in these programming language to use Class.new(...args) instead, avoiding the need to workaround or patch their parser and/or implement on their own a solution for this very common problem.

Usage

// these all work as expected in any client/server project
import '@ungap/new';
require('@ungap/new');
importScripts('https://unpkg.com/@ungap/new');

Date.new(0) instanceof Date; // true
// same as new Date(0)

Happy WASM <-> JS coding 🥳

About

An extension to allow `Class.new(...args)` instead of `new Class(...args)`

Resources

Stars

Watchers

Forks

Packages

No packages published