merges two maps of localized css class names via space concatenation
Lightweight helpers to compose class names and inline styles using variants. Zero runtime deps, small bundle, and first-class TypeScript support.
No description provided.
A CSS Modules transform to extract export statements from local-scope classes
Manage docker-compose from Node.js
Selectively merge values from one or more generators onto the current application instance.
compose Koa middleware
Does this JS environment support the `name` property on functions?
A simple list of possible Typed Array names.
TypeScript definitions for koa-compose
JSS plugin for classes composition
Give me a string and I'll tell you if it's a valid npm package name
GraphQL schema builder from different data sources with middleware extensions.
merges two maps of localized css class names via space concatenation
The set of canonical Unicode property names supported in ECMAScript RegExp property escapes.
A simple utility for composing two or more react refs into a single callback ref.
Compose new functions f(g(x))
Provides a cleaner API for enabling and configuring plugins for next.js
Composable HTTP Client
Validates whether a string matches the production for an XML name or qualified name
List of known MathML tag names
WordPress higher-order components (HOCs).
converts bare objects to DOM objects or xml representations
JavaScript parser, mangler/compressor and beautifier toolkit
A composable middleware stack that supports lambda and class-based middleware, named entries with insert-before/after and removal, conditional guards, error handling, middleware groups, before/after/around hooks, per-middleware timeouts, and profiling.
Debuggers are great! They help us troubleshoot complicated programming problems by inspecting values produced by code, line by line. They are invaluable when trying to understand what is going on in a large application composed of thousands or millions of lines of code. In day-to-day test-driven development and simple debugging though, a puts statement can be a lot quicker in revealing what is going on than halting execution completely just to inspect a single value or a few. This is certainly true when writing the simplest possible code that could possibly work, and running a test every few seconds or minutes. Problem is you need to locate puts statements in large output logs, know which file names, line numbers, classes, and methods contained the puts statements, find out what variable names are being printed, and see nicely formatted output. Enter puts_debuggerer. A guilt-free puts debugging Ruby gem FTW that prints file names, line numbers, class names, method names, and code statements; and formats output nicely courtesy of awesome_print. Partially inspired by this blog post: https://tenderlovemaking.com/2016/02/05/i-am-a-puts-debuggerer.html (Credit to Tenderlove.)
This app will display a list of the top ranked national universities in the U.S. in 2018. When the app is started, the user is given a navigational menu and prompted to view the entire university list, to select a university by ranking number to get more information, or to quit the app. If the user chooses to view the entire university list, a scraped list of university names from https://www.thebestcolleges.org/rankings/top-50/ will be displayed. The user can then choose to retrieve details from a specific university by providing the rank number or to return to the navigational menu. If the user chooses to get more information on a specific university, additional details will be provided as well as a link to the university site. The app will be composed of a University class for each individual university, a UniversityScraper for retrieving the information from the site, and a UniversityCLI interface.