devstar插件

This commit is contained in:
2025-07-26 16:40:29 +08:00
commit 30033daafe
4387 changed files with 1041101 additions and 0 deletions

111
node_modules/speakingurl/test/test-accent.js generated vendored Normal file
View File

@@ -0,0 +1,111 @@
/* global describe,it, before */
describe('getSlug translate sentence with accent words', function () {
'use strict';
describe('default options', function () {
var getSlug = require('../lib/speakingurl').createSlug({
});
it('single word', function (done) {
getSlug('Ánhanguera')
.should.eql('anhanguera');
done();
});
it('middle of sentence', function (done) {
getSlug('foo Ánhanguera bar')
.should.eql('foo-anhanguera-bar');
done();
});
it('beginning of sentence', function (done) {
getSlug('Ánhanguera foo bar')
.should.eql('anhanguera-foo-bar');
done();
});
it('end of sentence', function (done) {
getSlug('Ánhanguera fooá')
.should.eql('anhanguera-fooa');
done();
});
});
describe('titlecase options', function () {
var getSlug = require('../lib/speakingurl').createSlug({
titleCase: [
'a', 'an', 'and', 'as', 'at', 'but',
'by', 'en', 'for', 'if', 'in', 'nor',
'of', 'on', 'or', 'per', 'the', 'to', 'vs'
]
});
it('single word', function (done) {
getSlug('Ánhanguera')
.should.eql('Anhanguera');
done();
});
it('middle of sentence', function (done) {
getSlug('foo Ánhanguera bar')
.should.eql('Foo-Anhanguera-Bar');
done();
});
it('middle of sentence, with exception', function (done) {
getSlug('foo Ánhanguera And bar')
.should.eql('Foo-Anhanguera-and-Bar');
done();
});
it('beginning of sentence', function (done) {
getSlug('Ánhanguera foo Ánhanguera')
.should.eql('Anhanguera-Foo-Anhanguera');
done();
});
it('beginning of sentence, with exception', function (done) {
getSlug('Ánhanguera and Ánhanguera')
.should.eql('Anhanguera-and-Anhanguera');
done();
});
it('end of sentence', function (done) {
getSlug('Ánhanguera foo bará')
.should.eql('Anhanguera-Foo-Bara');
done();
});
it('end of sentence, with exception', function (done) {
getSlug('Ánhanguera foo and bará')
.should.eql('Anhanguera-Foo-and-Bara');
done();
});
});
});