Skip to content
#

libraries

A library is a collection of preprogrammed templates that implement a behavior when invoked. Libraries are well-defined and are designed for reuse throughout implementation. For example, a website may have multiple webpages that implement the same navigation bar or text-field, but none of these objects have relation to one another.

Here are 670 public repositories matching this topic...

opensource
tunnckoCore
tunnckoCore commented Feb 9, 2018

Which will behave like that

let settings = await prettyConfig('rollup', { configFiles })

if (!settings) {
  settings = await prettyConfig('rolldown', { configFiles })
}
console.log(settings)

instead of above we can hide it to look like that

const settings = await prettyConfig(['rollup', 'rolldown'], { configFiles })

if (!settings) {
  console.log('no config file
lorawoodford
lorawoodford commented Sep 24, 2020

Please leave a comment below to say a virtual "hello!" Let us know what brought you to the ArchivesSpace codebase, what you're working on, if you're looking for any collaborators to help you with your current or future projects, and any other questions or comments you might have.

Here's an example to get everyone started:

  • Your Name: Lora Woodford
  • Your Employer/Affiliation (if applicabl
Wikipedia
Wikipedia
You can’t perform that action at this time.