![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@a-la/markers
Advanced tools
A set of service markers used by alamode, e.g., to cut and paste comments.
@a-la/markers
is a set of service markers used by alamode
, e.g., to cut and paste comments.
yarn add -E @a-la/markers
The package is available by importing its default function:
import makeRules from '@a-la/markers'
makeRules(
rules?: !Array<!_restream.Rule>,
): !Array<!_restream.Rule>
This function will surround the rules with cut and paste rules for markers, to exclude from transforms:
[!] Important The current implementation does not support the following:
// the // will be considered to be a comment and break the process
// because the string literal will not be complete without the closing `
const noLink = `https://${host}/test`
export { noLink }
/* yarn example/ */
import makeRules from '@a-la/markers'
const { rules, markers } = makeRules([
{
re: 'ALAMODE_RULE',
replacement(match) {
return match
},
},
])
console.log('\nRules:')
console.log(rules)
console.log('\nMarkers:')
console.log(markers)
Rules:
[ { re: /\\[\\`'"\/]/g, replacement: [Function: replacement] },
{ re: /\/\*(?:[\s\S]+?)\*\//g,
replacement: [Function: replacement] },
{ re: /\/\/(.+)/gm, replacement: [Function: replacement] },
{ re: /(["'])(.*?)\1/gm, replacement: [Function: replacement] },
{ re: /\[(.*?)\]/gm, replacement: [Function: replacement] },
{ re: /\/(.+?)\//gm, replacement: [Function: replacement] },
{ re: /`([\s\S]*?)`/gm, replacement: [Function: replacement] },
{ re: 'ALAMODE_RULE', replacement: [Function: replacement] },
{ re: /%%_RESTREAM_LITERALS_REPLACEMENT_(\d+)_%%/g,
replacement: [Function: replacement] },
{ re: /%%_RESTREAM_REGEXES_REPLACEMENT_(\d+)_%%/g,
replacement: [Function: replacement] },
{ re: /%%_RESTREAM_REGEXGROUPS_REPLACEMENT_(\d+)_%%/g,
replacement: [Function: replacement] },
{ re: /%%_RESTREAM_STRINGS_REPLACEMENT_(\d+)_%%/g,
replacement: [Function: replacement] },
{ re: /%%_RESTREAM_INLINECOMMENTS_REPLACEMENT_(\d+)_%%/g,
replacement: [Function: replacement] },
{ re: /%%_RESTREAM_COMMENTS_REPLACEMENT_(\d+)_%%/g,
replacement: [Function: replacement] },
{ re: /%%_RESTREAM_ESCAPES_REPLACEMENT_(\d+)_%%/g,
replacement: [Function: replacement] } ]
Markers:
{ literals:
{ name: 'literals',
re: /`([\s\S]*?)`/gm,
regExp: /%%_RESTREAM_LITERALS_REPLACEMENT_(\d+)_%%/g,
getReplacement: [Function: getDefaultReplacement],
map: {},
lastIndex: 0 },
strings:
{ name: 'strings',
re: /(["'])(.*?)\1/gm,
regExp: /%%_RESTREAM_STRINGS_REPLACEMENT_(\d+)_%%/g,
getReplacement: [Function: getDefaultReplacement],
map: {},
lastIndex: 0 },
comments:
{ name: 'comments',
re: /\/\*(?:[\s\S]+?)\*\//g,
regExp: /%%_RESTREAM_COMMENTS_REPLACEMENT_(\d+)_%%/g,
getReplacement: [Function: getDefaultReplacement],
map: {},
lastIndex: 0 },
inlineComments:
{ name: 'inlineComments',
re: /\/\/(.+)/gm,
regExp: /%%_RESTREAM_INLINECOMMENTS_REPLACEMENT_(\d+)_%%/g,
getReplacement: [Function: getDefaultReplacement],
map: {},
lastIndex: 0 },
escapes:
{ name: 'escapes',
re: /\\[\\`'"\/]/g,
regExp: /%%_RESTREAM_ESCAPES_REPLACEMENT_(\d+)_%%/g,
getReplacement: [Function: getDefaultReplacement],
map: {},
lastIndex: 0 },
regexes:
{ name: 'regexes',
re: /\/(.+?)\//gm,
regExp: /%%_RESTREAM_REGEXES_REPLACEMENT_(\d+)_%%/g,
getReplacement: [Function: getDefaultReplacement],
map: {},
lastIndex: 0 },
regexGroups:
{ name: 'regexGroups',
re: /\[(.*?)\]/gm,
regExp: /%%_RESTREAM_REGEXGROUPS_REPLACEMENT_(\d+)_%%/g,
getReplacement: [Function: getDefaultReplacement],
map: {},
lastIndex: 0 } }
![]() | © Art Deco for À La Mode 2019 |
![]() | Tech Nation Visa Sucks |
---|
FAQs
A set of service markers used by alamode, e.g., to cut and paste comments.
The npm package @a-la/markers receives a total of 0 weekly downloads. As such, @a-la/markers popularity was classified as not popular.
We found that @a-la/markers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.