Javascript-FastClass 1.1.729.121805

dotnet add package Javascript-FastClass --version 1.1.729.121805                
NuGet\Install-Package Javascript-FastClass -Version 1.1.729.121805                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Javascript-FastClass" Version="1.1.729.121805" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Javascript-FastClass --version 1.1.729.121805                
#r "nuget: Javascript-FastClass, 1.1.729.121805"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Javascript-FastClass as a Cake Addin
#addin nuget:?package=Javascript-FastClass&version=1.1.729.121805

// Install Javascript-FastClass as a Cake Tool
#tool nuget:?package=Javascript-FastClass&version=1.1.729.121805                

A fast and lightest prototype inheritance when you can't use any complied library such as TypeScript or Google Closure

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.729.121805 225 7/29/2014
1.1.729.121340 60 7/29/2014
1.0.1011.122041 107 10/11/2013
1.0.712.213012 55 7/12/2013
1.0.706.225041 48 7/6/2013
1.0.703.105414 49 7/3/2013
1.0.702.214841 50 7/2/2013
1.0.701.202006 53 7/1/2013
1.0.701.174526 49 7/1/2013
1.0.626.194148 48 6/26/2013
1.0.406.154135 59 4/6/2013
1.0.406.154010 50 4/6/2013
1.0.406.130133 50 4/6/2013
1.0.405.175445 50 4/5/2013
1.0.405.173859 49 4/5/2013
1.0.405.164332 49 4/5/2013
1.0.405.154658 52 4/5/2013
1.0.405.154152 52 4/5/2013
1.0.405.25759 51 4/5/2013
1.0.405.25709 48 4/5/2013
1.0.404.231148 53 4/4/2013
1.0.404.230824 49 4/4/2013
1.0.404.221114 48 4/4/2013
1.0.404.221104 49 4/4/2013
1.0.404.221054 48 4/4/2013
1.0.404.215630 53 4/4/2013
1.0.404.204011 50 4/4/2013
1.0.404.202033 49 4/4/2013
1.0.404.191527 51 4/4/2013
1.0.404.94052 50 4/4/2013
1.0.404.90357 50 4/4/2013
1.0.404.85329 49 4/4/2013
1.0.403.111213 50 4/3/2013
1.0.401.215528 52 4/1/2013
1.0.330.90048 52 3/30/2013
1.0.330.84541 52 3/30/2013
1.0.328.141829 51 3/28/2013
1.0.328.124210 49 3/28/2013
1.0.328.63503 49 3/28/2013
1.0.328.54605 49 3/28/2013
1.0.328.40930 49 3/28/2013
1.0.328.31459 50 3/28/2013
1.0.326.142529 52 3/26/2013
1.0.326.141944 51 3/26/2013
1.0.326.140236 51 3/26/2013
1.0.326.1038 51 3/26/2013
1.0.326.1037 50 3/26/2013
1.0.326.1034 50 3/26/2013
1.0.326.1021 49 3/26/2013
1.0.326.1018 52 3/26/2013

Better intellisense support for VS2013 (since VS2012 supports __proto__)
     inheritWith creator now automatically shows members added on constructor and inherited constructors
     Made use of intellisense.inheritXMLDoc so we automatically inherit XMLDoc from the first base class that has has one specified
     Fixed inheritWith to accept an object when __proto__ is available
     Added inheritWith support to only provided an object when you don't need to call the base or baseCtor, or you call them explicitely
     Fixed missing Object.getPrototypeOf for IE8 or older. All the tests are passing even in IE7 (except enumerable properties which is expected)
     Dropped dependence https://github.com/dotnetwise/VS2012-Javascript-Intellisense
     Added sugar for Function.abstract to quickly define abstract methods
     Allow 'abstract' members on class/mixin so they can be redefined by another mixin. Usage: function() {}.defineStatic({abstract:true});
     Added Function.prototype.defineStatic({}) to define static members on the given function.
     Fixed defining mixins with Function.define({
     constructor: function() {},
     method: function() {}
     });
     Fixed intellisense
     Added unit-tests