Javascript-FastClass
1.0.712.213012
See the version list below for details.
dotnet add package Javascript-FastClass --version 1.0.712.213012
NuGet\Install-Package Javascript-FastClass -Version 1.0.712.213012
<PackageReference Include="Javascript-FastClass" Version="1.0.712.213012" />
paket add Javascript-FastClass --version 1.0.712.213012
#r "nuget: Javascript-FastClass, 1.0.712.213012"
// Install Javascript-FastClass as a Cake Addin #addin nuget:?package=Javascript-FastClass&version=1.0.712.213012 // Install Javascript-FastClass as a Cake Tool #tool nuget:?package=Javascript-FastClass&version=1.0.712.213012
A fast and lightest prototype inheritance when you can't use any complied library such as TypeScript or Google Closure
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.729.121805 | 2,284 | 7/29/2014 |
1.1.729.121340 | 1,129 | 7/29/2014 |
1.0.1011.122041 | 1,681 | 10/11/2013 |
1.0.712.213012 | 1,517 | 7/12/2013 |
1.0.706.225041 | 1,403 | 7/6/2013 |
1.0.703.105414 | 1,473 | 7/3/2013 |
1.0.702.214841 | 1,455 | 7/2/2013 |
1.0.701.202006 | 1,413 | 7/1/2013 |
1.0.701.174526 | 1,389 | 7/1/2013 |
1.0.626.194148 | 1,417 | 6/26/2013 |
1.0.406.154135 | 1,296 | 4/6/2013 |
1.0.406.154010 | 1,281 | 4/6/2013 |
1.0.406.130133 | 1,269 | 4/6/2013 |
1.0.405.175445 | 1,263 | 4/5/2013 |
1.0.405.173859 | 1,275 | 4/5/2013 |
1.0.405.164332 | 1,265 | 4/5/2013 |
1.0.405.154658 | 1,259 | 4/5/2013 |
1.0.405.154152 | 1,297 | 4/5/2013 |
1.0.405.25759 | 1,244 | 4/5/2013 |
1.0.405.25709 | 1,235 | 4/5/2013 |
1.0.404.231148 | 1,254 | 4/4/2013 |
1.0.404.230824 | 1,249 | 4/4/2013 |
1.0.404.221114 | 1,254 | 4/4/2013 |
1.0.404.221104 | 1,216 | 4/4/2013 |
1.0.404.221054 | 1,215 | 4/4/2013 |
1.0.404.215630 | 1,341 | 4/4/2013 |
1.0.404.204011 | 1,293 | 4/4/2013 |
1.0.404.202033 | 1,281 | 4/4/2013 |
1.0.404.191527 | 1,254 | 4/4/2013 |
1.0.404.94052 | 1,260 | 4/4/2013 |
1.0.404.90357 | 1,295 | 4/4/2013 |
1.0.404.85329 | 1,271 | 4/4/2013 |
1.0.403.111213 | 1,327 | 4/3/2013 |
1.0.401.215528 | 1,244 | 4/1/2013 |
1.0.330.90048 | 1,293 | 3/30/2013 |
1.0.330.84541 | 1,244 | 3/30/2013 |
1.0.328.141829 | 1,251 | 3/28/2013 |
1.0.328.124210 | 1,215 | 3/28/2013 |
1.0.328.63503 | 1,245 | 3/28/2013 |
1.0.328.54605 | 1,239 | 3/28/2013 |
1.0.328.40930 | 1,292 | 3/28/2013 |
1.0.328.31459 | 1,319 | 3/28/2013 |
1.0.326.142529 | 1,260 | 3/26/2013 |
1.0.326.141944 | 1,257 | 3/26/2013 |
1.0.326.140236 | 1,234 | 3/26/2013 |
1.0.326.1038 | 1,251 | 3/26/2013 |
1.0.326.1037 | 1,194 | 3/26/2013 |
1.0.326.1034 | 1,213 | 3/26/2013 |
1.0.326.1021 | 1,263 | 3/26/2013 |
1.0.326.1018 | 1,245 | 3/26/2013 |
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