Control aspects of your prototype within the prototype itself.
Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.
A library to make errors.
A utility for managing a prototype chain
Source code handling classes for webpack
A camera control for three.js, similar to THREE.OrbitControls yet supports smooth transitions and more features.
JSON parse with prototype poisoning protection
Return the prototype of a provided object.
Really Fast Deep Clone
Fastest way for creating null-prototype objects in JavaScript
Prototype related utils
Component to control the viewport of a React Flow instance
Display storybook controls on your device.
Lighthouse Stack Packs
Simple event emitter
Push an array of items into an array, while being robust against prototype modification
This is a code bundle for Astra Video Editor Prototype. The original project is available at https://www.figma.com/design/DQacnzpBF5xkM8pWOIc7JT/Astra-Video-Editor-Prototype.
request body parsing for co
controls adder for botasaurus.
List of prototype properties for JavaScript types
Event emitter
Tree utilities which provides a full-featured extend and object-cloning facility, and various tools to deal with nested object structures.
Disable Ember's prototype extensions.
Storybook: Develop, document, and test UI components in isolation
An in-place editor for Jester
Control Center is a Rails plugin that helps in quickly developing interfaces for website administration and application prototyping.
Control Center is a Rails plugin that helps in quickly developing interfaces for website administration and application prototyping.
Serve fixtured API responses quickly and easily. Runs a tiny sinatra server that serves static .json files or dynamic .rb files from disk. Control which fixtures are being used at localhost:port/test-panel. Great for QA and fast prototyping.
== DESCRIPTION: This is a ruby wrapper around Plotr with a similar API to Gruff. You can create graphs with a similar interface to Gruff, but offload the rendering to the browser! == FEATURES/PROBLEMS: * Needs more tests! == SYNOPSIS: An example in rails. Your controller: class GraphController < ApplicationController def index @drawr = Drawr::Pie.new @drawr.title = "Twan" @drawr.data("One", [1]) @drawr.data('Two', [2]) @drawr.data('Three', [2]) @drawr.data('Four', [10]) @drawr.data('Five', [6]) end end Your view: <html> <head> <%= javascript_include_tag 'prototype' %> <%= javascript_include_tag 'excanvas' %> <%= javascript_include_tag 'Plotr' %> </head> <body> <%= @drawr %> </body> </html>