mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 19:22:50 -06:00
support.js: two new functions: commonPrefix & insertFirst
This commit is contained in:
@@ -148,6 +148,10 @@ function appendChildren(el,ds) {
|
|||||||
return el;
|
return el;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function insertFirst(parent,child) {
|
||||||
|
parent.insertBefore(child,parent.firstChild);
|
||||||
|
}
|
||||||
|
|
||||||
function tda(cs) { return node("td",{},cs); }
|
function tda(cs) { return node("td",{},cs); }
|
||||||
|
|
||||||
function img(src) { return empty("img","src",src); }
|
function img(src) { return empty("img","src",src); }
|
||||||
@@ -216,6 +220,11 @@ function implode(cs) { // array of strings to string
|
|||||||
|
|
||||||
function hasPrefix(s,pre) { return s.substr(0,pre.length)==pre; }
|
function hasPrefix(s,pre) { return s.substr(0,pre.length)==pre; }
|
||||||
|
|
||||||
|
function commonPrefix(s1,s2) {
|
||||||
|
for(var i=0;i<s1.length && i<s2.length && s1[i]==s2[i];i++);
|
||||||
|
return s1.substr(0,i);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
function all(p,xs) {
|
function all(p,xs) {
|
||||||
for(var i=0;i<xs.length;i++)
|
for(var i=0;i<xs.length;i++)
|
||||||
|
|||||||
Reference in New Issue
Block a user