import SparqlAttribute from './SparqlAttribute';

export function parseTriples(this: SparqlAttribute, value: string | number) {
    return this.triples.map((triple) => {
        return triple.replace('\?' + this.name, <string>value)
    });
}

export default parseTriples;




